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

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'),
]