1
0
forked from PGL/Clyde

Meetings page creation

This commit is contained in:
Debucquoy Anthony 2024-04-02 11:42:15 +02:00
parent 9e0db361b8
commit 82b4e24d03
Signed by: tonitch
GPG Key ID: A78D6421F083D42E
4 changed files with 16 additions and 0 deletions

View File

@ -20,6 +20,7 @@ app.login=Login
app.notifications=Notifications
app.settings=Settings
app.messages=Messages
app.meetings=Meetings
app.forum=Forum
app.schedules=Schedules
app.inscription.requests=Inscription Requests

View File

@ -20,6 +20,7 @@ app.login=Se connecter
app.notifications=Notifications
app.settings=Options
app.messages=Messages
app.meetings=Rendez-vous
app.forum=Forum
app.schedules=Horaires
app.inscription.requests=Demandes d'Inscription

View File

@ -0,0 +1,11 @@
<template>
</template>
<script setup>
alert("Meetings page WIP")
</script>
<style scoped>
</style>

View File

@ -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 Meetings from "@/Apps/Meetings.vue"
const apps = {
'/login': LoginPage,
@ -17,10 +18,12 @@ const apps = {
'/manage-courses' : Courses,
'/users-list' : Users,
'/students-list' : Students,
'/meetings' : Meetings,
}
const appsList = {
'Msg': { path: '#/msg', icon: 'fa-comment', text: i18n("app.messages") },
'Meetings': { path: '#/meetings', icon: 'fa-handshake', text: i18n("app.meetings") },
'Notification': { path: '#/notifs', icon: 'fa-bell', text: i18n("app.notifications") },
'Forum': { path: '#/forum', icon: 'fa-envelope', text: i18n("app.forum") },
'Schedule': { path: '#/schedule', icon: 'fa-calendar-days', text: i18n("app.schedules") },