This commit is contained in:
Ross
2022-08-10 22:30:06 +01:00
parent 7032f890f9
commit 4c3b7d2e12
13 changed files with 534 additions and 45 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ urlpatterns = [
path("accounts/profile/<str:slug>/", views.account_profile, name="account_profile"),
path("", TemplateView.as_view(template_name="index.html"), name="home"),
path("cid/results/<int:cid>/", views.cid_results, name="cid_results"),
path("cid/<int:pk>/<str:passcode>", views.cid_scores, name="cid_scores"),
path("cid/<int:cid>/<str:passcode>", views.cid_scores, name="cid_scores"),
path("cid/<int:cid>/", views.cid_scores_admin, name="cid_scores_admin"),
path("user/scores", views.user_scores, name="user_scores"),
path("cid/", views.cid_selector, name="cid_selector"),