From 67fa630ecfbe0105212a04f8b4f3c8d7b55aacd4 Mon Sep 17 00:00:00 2001 From: LeoMoulin Date: Sat, 23 Mar 2024 18:04:36 +0100 Subject: [PATCH] e --- frontend/src/Apps/AboutStudent.vue | 84 +++++++++++++++++++++++++----- frontend/src/rest/apps.js | 3 ++ 2 files changed, 74 insertions(+), 13 deletions(-) diff --git a/frontend/src/Apps/AboutStudent.vue b/frontend/src/Apps/AboutStudent.vue index 442fd35..aaaeafc 100644 --- a/frontend/src/Apps/AboutStudent.vue +++ b/frontend/src/Apps/AboutStudent.vue @@ -1,24 +1,82 @@ - \ No newline at end of file diff --git a/frontend/src/rest/apps.js b/frontend/src/rest/apps.js index 99cbc10..44fb7c4 100644 --- a/frontend/src/rest/apps.js +++ b/frontend/src/rest/apps.js @@ -9,6 +9,7 @@ import Profil from "@/Apps/Profil.vue" import Courses from "@/Apps/ManageCourses.vue" import Users from "@/Apps/UsersList.vue" import Students from "@/Apps/StudentsList.vue" +import AboutStudent from "@/Apps/AboutStudent.vue"; const apps = { '/login': LoginPage, @@ -17,6 +18,7 @@ const apps = { '/manage-courses' : Courses, '/users-list' : Users, '/students-list' : Students, + '/about-students': AboutStudent } const appsList = { @@ -28,6 +30,7 @@ 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)