podjango: Fix duplicate URLconf entry for "all oggasts"

This commit is contained in:
Ben Sturmfels 2023-10-19 16:00:17 +11:00
parent 05c7ed6647
commit 43e3cbe7f1
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -43,7 +43,7 @@ urlpatterns = [
] ]
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'), url(r'^query/$', query, name='query'),
] ]