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/urls.py

8 lines
193 B
Python
Raw Normal View History

2015-10-19 13:04:49 +01:00
from django.conf.urls import include, url
2015-11-24 22:39:07 +00:00
2015-10-19 13:04:49 +01:00
urlpatterns = [
2016-02-20 19:27:18 +00:00
url(r'^blog/', include('project.blog.urls', namespace='blog')),
url(r'', include('project.pages.urls', namespace='pages'))
2015-10-19 13:04:49 +01:00
]