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-06-02 12:59:49 +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'
|