fix: remove lint error

This commit is contained in:
Luc SORIGNET
2025-02-15 14:06:06 +01:00
parent d9655772b4
commit aef6c193b1
8 changed files with 34 additions and 33 deletions

View File

@ -154,8 +154,8 @@ export default function DashboardPage() {
<div className="flex flex-wrap"> <div className="flex flex-wrap">
{classes.map((classe) => ( {classes.map((classe) => (
<div className="lg:col-span-2 bg-white p-6 rounded-lg shadow-sm border border-gray-100 mr-4"> <div key={classe.id} className="lg:col-span-2 bg-white p-6 rounded-lg shadow-sm border border-gray-100 mr-4">
<ClasseDetails key={classe.id} classe={classe} /> <ClasseDetails classe={classe} />
</div> </div>
))} ))}
</div> </div>

View File

@ -7,7 +7,7 @@ export default function NotFound() {
<div className='text-center p-6 '> <div className='text-center p-6 '>
<Logo className="w-32 h-32 mx-auto mb-4" /> <Logo className="w-32 h-32 mx-auto mb-4" />
<h2 className='text-2xl font-bold text-emerald-900 mb-4'>404 | Page non trouvée</h2> <h2 className='text-2xl font-bold text-emerald-900 mb-4'>404 | Page non trouvée</h2>
<p className='text-emerald-900 mb-4'>La ressource que vous souhaitez consulter n'existe pas ou plus.</p> <p className='text-emerald-900 mb-4'>La ressource que vous souhaitez consulter n&apos;existe pas ou plus.</p>
<Link className="text-gray-900 hover:underline" href="/">Retour Accueil</Link> <Link className="text-gray-900 hover:underline" href="/">Retour Accueil</Link>
</div> </div>
</div> </div>

View File

@ -75,7 +75,7 @@ const Calendar = ({ onDateClick, onEventClick }) => {
onClick={() => setCurrentDate(new Date())} onClick={() => setCurrentDate(new Date())}
className="px-3 py-1.5 text-sm font-medium text-gray-700 hover:text-gray-900 bg-gray-100 hover:bg-gray-200 rounded-md transition-colors" className="px-3 py-1.5 text-sm font-medium text-gray-700 hover:text-gray-900 bg-gray-100 hover:bg-gray-200 rounded-md transition-colors"
> >
Aujourd'hui Aujourd&apos;hui
</button> </button>
<button onClick={() => navigateDate('prev')} className="p-2 hover:bg-gray-100 rounded-full"> <button onClick={() => navigateDate('prev')} className="p-2 hover:bg-gray-100 rounded-full">
<ChevronLeft className="w-5 h-5" /> <ChevronLeft className="w-5 h-5" />

View File

@ -385,7 +385,7 @@ const InscriptionForm = ( { students, registrationDiscounts, tuitionDiscounts, r
) : ( ) : (
<p className="bg-orange-100 border border-orange-400 text-orange-700 px-4 py-3 rounded relative" role="alert"> <p className="bg-orange-100 border border-orange-400 text-orange-700 px-4 py-3 rounded relative" role="alert">
<strong className="font-bold">Information</strong> <strong className="font-bold">Information</strong>
<span className="block sm:inline"> Aucune réduction n'a été créée sur les frais d'inscription.</span> <span className="block sm:inline"> Aucune réduction n&apos;a été créée sur les frais d&apos;inscription.</span>
</p> </p>
)} )}
</div> </div>
@ -408,7 +408,7 @@ const InscriptionForm = ( { students, registrationDiscounts, tuitionDiscounts, r
) : ( ) : (
<p className="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert"> <p className="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert">
<strong className="font-bold">Attention!</strong> <strong className="font-bold">Attention!</strong>
<span className="block sm:inline"> Aucun frais d'inscription n'a été créé.</span> <span className="block sm:inline"> Aucun frais d&apos;inscription n&apos;a été créé.</span>
</p> </p>
)} )}
</div> </div>
@ -440,7 +440,7 @@ const InscriptionForm = ( { students, registrationDiscounts, tuitionDiscounts, r
) : ( ) : (
<p className="bg-orange-100 border border-orange-400 text-orange-700 px-4 py-3 rounded relative" role="alert"> <p className="bg-orange-100 border border-orange-400 text-orange-700 px-4 py-3 rounded relative" role="alert">
<strong className="font-bold">Information</strong> <strong className="font-bold">Information</strong>
<span className="block sm:inline"> Aucune réduction n'a été créée sur les frais de scolarité.</span> <span className="block sm:inline"> Aucune réduction n&apos;a été créée sur les frais de scolarité.</span>
</p> </p>
)} )}
</div> </div>
@ -463,7 +463,7 @@ const InscriptionForm = ( { students, registrationDiscounts, tuitionDiscounts, r
) : ( ) : (
<p className="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert"> <p className="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert">
<strong className="font-bold">Attention!</strong> <strong className="font-bold">Attention!</strong>
<span className="block sm:inline"> Aucun frais de scolarité n'a été créé.</span> <span className="block sm:inline"> Aucun frais de scolarité n&apos;a été créé.</span>
</p> </p>
)} )}
</div> </div>
@ -501,7 +501,7 @@ const InscriptionForm = ( { students, registrationDiscounts, tuitionDiscounts, r
) : ( ) : (
<p className="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert"> <p className="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert">
<strong className="font-bold">Attention!</strong> <strong className="font-bold">Attention!</strong>
<span className="block sm:inline"> Aucun groupe de documents n'a été créé.</span> <span className="block sm:inline"> Aucun groupe de documents n&apos;a été créé.</span>
</p> </p>
)} )}
</div> </div>

View File

@ -249,7 +249,7 @@ export default function InscriptionFormShared({
<DjangoCSRFToken csrfToken={csrfToken}/> <DjangoCSRFToken csrfToken={csrfToken}/>
{/* Section Élève */} {/* Section Élève */}
<div className="bg-white p-6 rounded-lg shadow-sm border border-gray-200"> <div className="bg-white p-6 rounded-lg shadow-sm border border-gray-200">
<h2 className="text-xl font-bold mb-4 text-gray-800">Informations de l'élève</h2> <h2 className="text-xl font-bold mb-4 text-gray-800">Informations de l&apos;élève</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4"> <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<InputText <InputText
name="last_name" name="last_name"

View File

@ -10,7 +10,7 @@ export default function RegistrationFileGroupList() {
return ( return (
<div> <div>
<h2>Groupes de fichiers d'inscription</h2> <h2>Groupes de fichiers d&apos;inscription</h2>
<ul> <ul>
{groups.map(group => ( {groups.map(group => (
<li key={group.id}>{group.name}</li> <li key={group.id}>{group.name}</li>

View File

@ -7,7 +7,8 @@ import SelectChoice from '@/components/SelectChoice';
import TeacherItem from '@/components/Structure/Configuration/TeacherItem'; import TeacherItem from '@/components/Structure/Configuration/TeacherItem';
import MultiSelect from '@/components/MultiSelect'; import MultiSelect from '@/components/MultiSelect';
import LevelLabel from '@/components/CustomLabels/LevelLabel'; import LevelLabel from '@/components/CustomLabels/LevelLabel';
import { DndProvider, HTML5Backend, useDrop } from 'react-dnd'; import { DndProvider, useDrop } from 'react-dnd';
import { HTML5Backend } from 'react-dnd-html5-backend';
import { ESTABLISHMENT_ID } from '@/utils/Url'; import { ESTABLISHMENT_ID } from '@/utils/Url';
const ItemTypes = { const ItemTypes = {

View File

@ -47,7 +47,7 @@ const FeesManagement = ({ registrationDiscounts,
return ( return (
<div className="w-full mx-auto p-2 mt-6 space-y-6"> <div className="w-full mx-auto p-2 mt-6 space-y-6">
<div className="bg-white p-2 rounded-lg shadow-md"> <div className="bg-white p-2 rounded-lg shadow-md">
<h2 className="text-2xl font-semibold mb-4">Frais d'inscription</h2> <h2 className="text-2xl font-semibold mb-4">Frais d&apos;inscription</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6"> <div className="grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="col-span-1 p-6 rounded-lg shadow-inner mt-4"> <div className="col-span-1 p-6 rounded-lg shadow-inner mt-4">
<FeesSection <FeesSection