This commit is contained in:
Ross
2022-05-24 12:30:11 +01:00
parent bbcbc02e0d
commit 41a09ea30d
29 changed files with 506 additions and 247 deletions
+4
View File
@@ -53,8 +53,12 @@ urlpatterns = [
path("sbas/", include("sbas.urls"), name="sbas"),
path("generic/", include("generic.urls"), name="generic"),
path("atlas/", include("atlas.urls"), name="atlas"),
path("accounts/update/<str:slug>/", views.UpdateUserView.as_view(), name="account_update"),
path("accounts/update_profile/<str:slug>/", views.UpdateUserProfileView.as_view(), name="account_profile_update"),
path("accounts/", views.UserListView.as_view(), name="accounts_list"),
path("accounts/", include("django.contrib.auth.urls")),
path("accounts/profile", views.profile, name="profile"),
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"),