summaryrefslogtreecommitdiff
path: root/program/urls.py
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2021-03-03 13:43:40 (GMT)
committerChristian Pointner <equinox@helsinki.at>2021-03-03 13:43:40 (GMT)
commitef98eb1ea7167a6be047cb9fdbfc500d8272792a (patch)
treeb566c607f3f971edc8734b62c124e9c1625705c3 /program/urls.py
parent2094bd035f5b9ede35f9b28d5a2be7555f59b3af (diff)
parent59be96ee97d08017bd3ba37b77fc5a3442262909 (diff)
Merge branch 'new-homepage' into stable
Diffstat (limited to 'program/urls.py')
-rw-r--r--program/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/urls.py b/program/urls.py
index a4909e4..776b9c0 100644
--- a/program/urls.py
+++ b/program/urls.py
@@ -31,6 +31,7 @@ urlpatterns = patterns('',
url(r'^v2/shows/?$', views.ShowListViewV2.as_view()),
url(r'^v2/shows/(?P<slug>[\w-]+)/?$', views.ShowDetailViewV2.as_view()),
url(r'^v2/(?P<pk>\d+)/?$', views.TimeSlotDetailViewV2.as_view()),
+ url(r'^v2/show-filters/?$', views.ShowFilterListViewV2.as_view()),
)
if settings.DEBUG:
urlpatterns += \