diff --git a/Front-End/src/app/[locale]/admin/subscriptions/page.js b/Front-End/src/app/[locale]/admin/subscriptions/page.js index 95753bf..ab68322 100644 --- a/Front-End/src/app/[locale]/admin/subscriptions/page.js +++ b/Front-End/src/app/[locale]/admin/subscriptions/page.js @@ -13,7 +13,7 @@ import Button from '@/components/Button'; import DropdownMenu from "@/components/DropdownMenu"; import { swapFormatDate } from '@/utils/Date'; import { formatPhoneNumber } from '@/utils/Telephone'; -import { MoreVertical, Send, Edit, Trash2, FileText, ChevronUp, UserPlus, CheckCircle } from 'lucide-react'; +import { MoreVertical, Send, Edit, Trash2, FileText, ChevronUp, UserPlus, CheckCircle, Plus} from 'lucide-react'; import Modal from '@/components/Modal'; import InscriptionForm from '@/components/Inscription/InscriptionForm' import AffectationClasseForm from '@/components/AffectationClasseForm' @@ -562,68 +562,81 @@ const columnsSubscribed = [ return (
-
+
- {t('pending')} - ({totalPending}) - } + text={( + <> + {t('pending')} + ({totalPending}) + + )} active={activeTab === 'pending'} onClick={() => setActiveTab('pending')} /> - {t('subscribed')} - ({totalSubscribed}) - } + text={( + <> + {t('subscribed')} + ({totalSubscribed}) + + )} active={activeTab === 'subscribed'} onClick={() => setActiveTab('subscribed')} /> - {t('archived')} - ({totalArchives}) - } + text={( + <> + {t('archived')} + ({totalArchives}) + + )} active={activeTab === 'archived'} onClick={() => setActiveTab('archived')} /> -
- -
-
- - +
+ +
+ + +
+
+
+ + - - -