9 lines
157 B
Python
9 lines
157 B
Python
from django.conf.urls import include, url, handler500
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'', include('orchestra.urls')),
|
|
]
|
|
|
|
handler500 = 'orchestra.views.error_500'
|