Ajoute le détail des étudiants (big update)

This commit is contained in:
2024-03-25 09:57:35 +01:00
parent 67fa630ecf
commit eafff6ec2d
10 changed files with 188 additions and 23 deletions

View File

@ -18,7 +18,6 @@ const apps = {
'/manage-courses' : Courses,
'/users-list' : Users,
'/students-list' : Students,
'/about-students': AboutStudent
}
const appsList = {
@ -30,7 +29,6 @@ const appsList = {
'ManageCourses': { path: '#/manage-courses', icon: 'fa-book', text: i18n("app.manage.courses") },
'StudentsList':{ path: '#/students-list',icon: 'fa-users',text: i18n("app.studentList")},
'UsersList':{ path: '#/users-list',icon: 'fa-users',text: i18n("app.users")},
'AboutStudent':{ path: '#/about-users', icon: 'fa-users', text:i18n("app.aboutStudent")}
}
const currentPath = ref(window.location.hash)

View File

@ -48,3 +48,7 @@ export async function altercurriculum(id, courses){
export async function getSelfCurriculum(){
return restGet("/curriculum");
}
export async function getSomeonesCurriculumList(user){
return restGet("/onescurriculum/"+user)
}