diff --git a/client/src/components/DashboardLayout.tsx b/client/src/components/DashboardLayout.tsx index a2edb5b..8da6102 100644 --- a/client/src/components/DashboardLayout.tsx +++ b/client/src/components/DashboardLayout.tsx @@ -49,9 +49,7 @@ const menuSections = [ { icon: UserCog, label: "Utilisateurs", path: "/admin/users" }, { icon: User, label: "Formateurs", path: "/admin/formateurs" }, { icon: FileSpreadsheet, label: "Import Excel", path: "/admin/import-excel" }, - { icon: Bell, label: "Rappels", path: "/admin/rappels", subItems: [ - { label: "Historique", path: "/admin/rappels/historique" }, - ] }, + { icon: ClipboardList, label: "Questionnaires", path: "/admin/questionnaires" }, { icon: Mail, label: "Templates d'emails", path: "/admin/email-templates" }, { icon: Settings, label: "Configuration SMTP", path: "/admin/email-config" }, @@ -59,14 +57,20 @@ const menuSections = [ ] }, { - title: "Analyses", + title: "Traçabilité", items: [ { icon: Building2, label: "Établissements", path: "/admin/etablissements" }, + { icon: Mail, label: "Notifications", path: "/admin/notifications" }, + { icon: TrendingUp, label: "Suivi Questionnaires", path: "/admin/questionnaires/suivi" }, + { icon: Bell, label: "Rappels", path: "/admin/rappels/historique" }, + ] + }, + { + title: "Analyses", + items: [ { icon: TrendingUp, label: "Tableau de bord analytique", path: "/admin/analytics" }, { icon: BarChart3, label: "Rapport Public Cible", path: "/admin/rapport-public-cible" }, - { icon: TrendingUp, label: "Suivi Questionnaires", path: "/admin/questionnaires/suivi" }, - { icon: Mail, label: "Notifications", path: "/admin/notifications" }, - { icon: BarChart3, label: "Rappels", path: "/admin/rappels/statistiques" }, + { icon: BarChart3, label: "Statistiques des rappels", path: "/admin/rappels/statistiques" }, ] }, ]; diff --git a/todo.md b/todo.md index 08bf06f..52cfe82 100644 --- a/todo.md +++ b/todo.md @@ -473,3 +473,11 @@ ## Nouvelles modifications du menu - [x] Renommer "Attestations" en "Attestations de formation" - [x] Déplacer "Statistiques" de Rappels vers ANALYSES et le renommer "Rappels" + +## Création de la section TRAÇABILITÉ +- [x] Renommer "Rappels" (ANALYSES) en "Statistiques des rappels" +- [x] Créer une nouvelle section "TRAÇABILITÉ" +- [x] Déplacer "Notifications" vers TRAÇABILITÉ +- [x] Déplacer "Suivi Questionnaires" vers TRAÇABILITÉ +- [x] Déplacer "Établissements" vers TRAÇABILITÉ +- [x] Déplacer "Historique" (sous-menu de Rappels) vers TRAÇABILITÉ avec le nom "Rappels"