fix: urlconf order

This commit is contained in:
Luca 2024-02-14 00:49:19 +01:00
parent f0caef1cca
commit d709f020f4
1 changed files with 1 additions and 1 deletions

View File

@ -25,8 +25,8 @@ urlpatterns = [
"p/pretalx_musicrate/", "p/pretalx_musicrate/",
include( include(
[ [
path("<code>/", AssigneeView.as_view(), name="assignee"),
path("export/", ExportView.as_view(), name="export"), path("export/", ExportView.as_view(), name="export"),
path("<code>/", AssigneeView.as_view(), name="assignee"),
] ]
), ),
), ),