summaryrefslogtreecommitdiff
path: root/program/urls.py
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2021-03-03 13:21:31 (GMT)
committerChristian Pointner <equinox@helsinki.at>2021-03-03 13:21:31 (GMT)
commit2094bd035f5b9ede35f9b28d5a2be7555f59b3af (patch)
treeaee75b724b5e44066c07d8a74fecd542e8a04390 /program/urls.py
parent255b58b8b47f4fc12c634d5b3098538b2ab250b3 (diff)
parent546a1a082e6cbafaf0fd5a7063c3694e0e0205f3 (diff)
Merge branch 'new-homepage' into stable
Diffstat (limited to 'program/urls.py')
-rw-r--r--program/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/urls.py b/program/urls.py
index 0abce53..a4909e4 100644
--- a/program/urls.py
+++ b/program/urls.py
@@ -26,11 +26,11 @@ urlpatterns = patterns('',
url(r'^v2/today/?$', views.DayScheduleViewV2.as_view()),
url(r'^v2/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/?$', views.DayScheduleViewV2.as_view()),
url(r'^v2/hosts/?$', views.HostListViewV2.as_view()),
- url(r'^v2/hosts/(?P<pk>\d+)/?$', views.HostDetailViewV2.as_view(), name='host-detail-v2'),
+ url(r'^v2/hosts/(?P<pk>\d+)/?$', views.HostDetailViewV2.as_view()),
url(r'^v2/tips/?$', views.RecommendationsListViewV2.as_view()),
url(r'^v2/shows/?$', views.ShowListViewV2.as_view()),
- url(r'^v2/shows/(?P<slug>[\w-]+)/?$', views.ShowDetailViewV2.as_view(), name='show-detail-v2'),
- url(r'^v2/(?P<pk>\d+)/?$', views.TimeSlotDetailViewV2.as_view(), name='timeslot-detail-v2'),
+ url(r'^v2/shows/(?P<slug>[\w-]+)/?$', views.ShowDetailViewV2.as_view()),
+ url(r'^v2/(?P<pk>\d+)/?$', views.TimeSlotDetailViewV2.as_view()),
)
if settings.DEBUG:
urlpatterns += \