From 43e3cbe7f1c3c63e28873defa8b5a52e4880d03a Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Thu, 19 Oct 2023 16:00:17 +1100 Subject: [PATCH] podjango: Fix duplicate URLconf entry for "all oggasts" --- www/podjango/apps/cast/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/podjango/apps/cast/urls.py b/www/podjango/apps/cast/urls.py index c91e8b80..5ccb5643 100644 --- a/www/podjango/apps/cast/urls.py +++ b/www/podjango/apps/cast/urls.py @@ -43,7 +43,7 @@ urlpatterns = [ ] urlpatterns += [ - url(r'^$', custom_index, dict(info_dict, paginate_by=20), name='cast'), + url(r'^all/$', custom_index, dict(info_dict, paginate_by=20), name='cast'), url(r'^query/$', query, name='query'), ]