feat: Implement supervisor trainee management features, including search, add, and remove functionalities
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -256,6 +256,21 @@ urlpatterns = [
|
||||
views.SupervisorDelete.as_view(),
|
||||
name="supervisor_delete",
|
||||
),
|
||||
path(
|
||||
"supervisor/<int:pk>/trainee/search",
|
||||
views.supervisor_trainee_search,
|
||||
name="supervisor_trainee_search",
|
||||
),
|
||||
path(
|
||||
"supervisor/<int:pk>/trainee/<int:user_id>/add",
|
||||
views.supervisor_trainee_add,
|
||||
name="supervisor_trainee_add",
|
||||
),
|
||||
path(
|
||||
"supervisor/<int:pk>/trainee/<int:user_id>/remove",
|
||||
views.supervisor_trainee_remove,
|
||||
name="supervisor_trainee_remove",
|
||||
),
|
||||
path(
|
||||
"examcollection/",
|
||||
views.ExamCollectionList.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user