adding list of user PROTO
This commit is contained in:
@ -9,12 +9,16 @@
|
||||
import Inscription from "./Apps/Inscription.vue"
|
||||
import Profil from "./Apps/Profil.vue"
|
||||
import Courses from "./Apps/ManageCourses.vue"
|
||||
import Students from "./Apps/StudentsList.vue"
|
||||
import Users from "./Apps/UsersList.vue"
|
||||
|
||||
const apps = {
|
||||
'/login': LoginPage,
|
||||
'/login': LoginPage,
|
||||
'/inscription': Inscription,
|
||||
'/profil': Profil,
|
||||
'/manage-courses' : Courses,
|
||||
'/students' : Students,
|
||||
'/users' : Users,
|
||||
}
|
||||
const currentPath = ref(window.location.hash)
|
||||
|
||||
@ -105,8 +109,13 @@
|
||||
<li><a href="#/manage-courses">
|
||||
<div class="fa-solid fa-book" style="align-self:center;font-size: 40px;overflow:none;"></div>
|
||||
<div class="text">{{i18n("app.manage.courses")}}</div></a></li>
|
||||
</ul>
|
||||
|
||||
<li><a href="#/students-list">
|
||||
<div class="fa-solid fa-users-between-lines" style="font-size: 40px"></div>
|
||||
<div class="text">{{i18n("app.studentList")}}</div></a></li>
|
||||
<li><a href="#/users">
|
||||
<div class="fa-solid fa-users" style="font-size: 40px"></div>
|
||||
<div class="text">{{i18n("app.users")}}</div></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="page">
|
||||
<div style=" margin:50px;">
|
||||
|
Reference in New Issue
Block a user