feat: Implement supervisor trainee management features, including search, add, and remove functionalities

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Ross
2026-04-29 22:27:09 +01:00
co-authored by Copilot
parent f63f3b3687
commit 89c8cd565f
10 changed files with 500 additions and 82 deletions
+5
View File
@@ -99,6 +99,11 @@ urlpatterns = [
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(
"accounts/profile/<str:slug>/set-supervisor/",
views.account_set_supervisor,
name="account_set_supervisor",
),
#path("", TemplateView.as_view(template_name="index.html"), name="home"),
path("", views.index, name="home"),
path("cid/results/<int:cid>/", views.cid_results, name="cid_results"),