diff options
author | Christian Pointner <equinox@helsinki.at> | 2024-12-18 14:02:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 14:02:37 (GMT) |
commit | f6a26b0423eb01704361b5f5a6b7345762868ef5 (patch) | |
tree | 2bfae2b73cbef063cc2a4d82a3d6ebd7d243cd72 /program/urls.py | |
parent | c5629ea3f166faa5743ce342be1f401776ad796f (diff) | |
parent | a0af34e28b6013b21ed2d6dfdd9b2db303cad506 (diff) |
Merge pull request #33 from radio-helsinki-graz/simple-search-viewstable
Simple search view for hosts, notes and shows
Diffstat (limited to 'program/urls.py')
-rw-r--r-- | program/urls.py | 2 |
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 += \ |