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
Jake Howard 97601a7b53 Refactor view code
- Compress codebase
- Remove duplicate bulky code
- Use template directory to dictate sitemap
2016-04-05 19:38:09 +01:00

8 lines
196 B
Python

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