django-orchestra/orchestra/conf/project_template/project_name/urls.py

9 lines
157 B
Python
Raw Normal View History

2024-12-09 10:34:09 +00:00
from django.conf.urls import include, url, handler500
2014-05-08 16:59:35 +00:00
2015-05-19 13:27:04 +00:00
urlpatterns = [
2014-05-08 16:59:35 +00:00
url(r'', include('orchestra.urls')),
2015-05-19 13:27:04 +00:00
]
2024-12-09 10:34:09 +00:00
handler500 = 'orchestra.views.error_500'