1
Fork 0
theorangeone.net-legacy/project/pages/urls.py

9 lines
196 B
Python
Raw Normal View History

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