summaryrefslogtreecommitdiff
path: root/program/urls.py
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2021-03-03 13:21:13 (GMT)
committerChristian Pointner <equinox@helsinki.at>2021-03-03 13:21:13 (GMT)
commit546a1a082e6cbafaf0fd5a7063c3694e0e0205f3 (patch)
treeaee75b724b5e44066c07d8a74fecd542e8a04390 /program/urls.py
parenta0ee1c483fe320e9b6b719a2ce103954f5b00e92 (diff)
fix link targets for new homepage
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 += \