django-orchestra/orchestra/conf/project_template/project_name/urls.py
2024-12-09 11:34:09 +01:00

9 lines
157 B
Python

from django.conf.urls import include, url, handler500
urlpatterns = [
url(r'', include('orchestra.urls')),
]
handler500 = 'orchestra.views.error_500'