summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnesto Rico Schmidt <ernesto@helsinki.at>2024-12-09 23:47:03 (GMT)
committerErnesto Rico Schmidt <ernesto@helsinki.at>2024-12-09 23:47:03 (GMT)
commita0af34e28b6013b21ed2d6dfdd9b2db303cad506 (patch)
tree2bfae2b73cbef063cc2a4d82a3d6ebd7d243cd72
parent02851dbdaf4aef9a619cab45766f28b78c0f8d31 (diff)
Add url for search
-rw-r--r--program/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/program/urls.py b/program/urls.py
index 78b9af4..bfed531 100644
--- a/program/urls.py
+++ b/program/urls.py
@@ -28,6 +28,8 @@ urlpatterns = patterns('',
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()),
+ # search view for WordPress 2025
+ url(r'^v3/search/?$', views.search)
)
if settings.DEBUG:
urlpatterns += \