mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
feat: Champ de recherche de l'élève [#16]
This commit is contained in:
@ -19,7 +19,8 @@ from .views import (
|
||||
AbsenceManagementListCreateView,
|
||||
AbsenceManagementDetailView,
|
||||
StudentCompetencyListCreateView,
|
||||
StudentCompetencySimpleView
|
||||
StudentCompetencySimpleView,
|
||||
search_students
|
||||
)
|
||||
|
||||
from .views import RegistrationFileGroupView, RegistrationFileGroupSimpleView, get_registration_files_by_group
|
||||
@ -38,6 +39,7 @@ urlpatterns = [
|
||||
re_path(r'^students$', StudentListView.as_view(), name="students"),
|
||||
# Page de formulaire d'inscription - ELEVE
|
||||
re_path(r'^students/(?P<id>[0-9]+)$', StudentView.as_view(), name="students"),
|
||||
re_path(r'^search-students', search_students, name='search_students'),
|
||||
# Page PARENT - Liste des children
|
||||
re_path(r'^children/(?P<id>[0-9]+)$', ChildrenListView.as_view(), name="children"),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user