1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/pages/urls.py
2016-04-05 22:37:37 +01:00

8 lines
202 B
Python

from django.conf.urls import url
from .views import page_view, AboutView
urlpatterns = [
url(r'^about/?$', AboutView.as_view(), name='about'),
url(r'^(?P<path>.*)', page_view, name='page'),
]