podjango: Fix duplicate URLconf entry for "all oggasts"

This commit is contained in:
Ben Sturmfels 2023-10-19 16:00:17 +11:00
parent 60ae457e45
commit e74cad9276

View file

@ -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'),
]