mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
chore: application prettier
This commit is contained in:
@ -1,322 +1,362 @@
|
||||
export const mockFicheInscription = [
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Dupont",
|
||||
"prenom": "Jean",
|
||||
"responsables":[ {
|
||||
"mail": "responsable@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Dupont',
|
||||
prenom: 'Jean',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'responsable@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-10-01",
|
||||
"etat": 1,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file1", "nom": "file1.pdf" },
|
||||
{ "url": "/path/to/file2", "nom": "file2.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-10-01',
|
||||
etat: 1,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file1', nom: 'file1.pdf' },
|
||||
{ url: '/path/to/file2', nom: 'file2.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Martin",
|
||||
"prenom": "Paul",
|
||||
"responsables":[ {
|
||||
"mail": "paul.martin@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Martin',
|
||||
prenom: 'Paul',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'paul.martin@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-09-15",
|
||||
"etat": 2,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file3", "nom": "file3.pdf" },
|
||||
{ "url": "/path/to/file4", "nom": "file4.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-09-15',
|
||||
etat: 2,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file3', nom: 'file3.pdf' },
|
||||
{ url: '/path/to/file4', nom: 'file4.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Bernard",
|
||||
"prenom": "Alice",
|
||||
"responsables":[ {
|
||||
"mail": "alice.bernard@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Bernard',
|
||||
prenom: 'Alice',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'alice.bernard@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-08-20",
|
||||
"etat": 0,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file5", "nom": "file5.pdf" },
|
||||
{ "url": "/path/to/file6", "nom": "file6.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-08-20',
|
||||
etat: 0,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file5', nom: 'file5.pdf' },
|
||||
{ url: '/path/to/file6', nom: 'file6.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Lefevre",
|
||||
"prenom": "Marie",
|
||||
"responsables":[ {
|
||||
"mail": "marie.lefevre@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Lefevre',
|
||||
prenom: 'Marie',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'marie.lefevre@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-07-10",
|
||||
"etat": 3,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file7", "nom": "file7.pdf" },
|
||||
{ "url": "/path/to/file8", "nom": "file8.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-07-10',
|
||||
etat: 3,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file7', nom: 'file7.pdf' },
|
||||
{ url: '/path/to/file8', nom: 'file8.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Moreau",
|
||||
"prenom": "Luc",
|
||||
"responsables":[ {
|
||||
"mail": "luc.moreau@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Moreau',
|
||||
prenom: 'Luc',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'luc.moreau@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-06-05",
|
||||
"etat": 1,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file9", "nom": "file9.pdf" },
|
||||
{ "url": "/path/to/file10", "nom": "file10.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-06-05',
|
||||
etat: 1,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file9', nom: 'file9.pdf' },
|
||||
{ url: '/path/to/file10', nom: 'file10.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Simon",
|
||||
"prenom": "Julie",
|
||||
"responsables":[ {
|
||||
"mail": "julie.simon@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Simon',
|
||||
prenom: 'Julie',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'julie.simon@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-05-15",
|
||||
"etat": 2,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file11", "nom": "file11.pdf" },
|
||||
{ "url": "/path/to/file12", "nom": "file12.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-05-15',
|
||||
etat: 2,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file11', nom: 'file11.pdf' },
|
||||
{ url: '/path/to/file12', nom: 'file12.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Laurent",
|
||||
"prenom": "Pierre",
|
||||
"responsables":[ {
|
||||
"mail": "pierre.laurent@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Laurent',
|
||||
prenom: 'Pierre',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'pierre.laurent@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-04-10",
|
||||
"etat": 0,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file13", "nom": "file13.pdf" },
|
||||
{ "url": "/path/to/file14", "nom": "file14.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-04-10',
|
||||
etat: 0,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file13', nom: 'file13.pdf' },
|
||||
{ url: '/path/to/file14', nom: 'file14.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Roux",
|
||||
"prenom": "Sophie",
|
||||
"responsables":[ {
|
||||
"mail": "sophie.roux@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Roux',
|
||||
prenom: 'Sophie',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'sophie.roux@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-03-20",
|
||||
"etat": 3,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file15", "nom": "file15.pdf" },
|
||||
{ "url": "/path/to/file16", "nom": "file16.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-03-20',
|
||||
etat: 3,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file15', nom: 'file15.pdf' },
|
||||
{ url: '/path/to/file16', nom: 'file16.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "David",
|
||||
"prenom": "Antoine",
|
||||
"responsables":[ {
|
||||
"mail": "antoine.david@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'David',
|
||||
prenom: 'Antoine',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'antoine.david@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-02-25",
|
||||
"etat": 1,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file17", "nom": "file17.pdf" },
|
||||
{ "url": "/path/to/file18", "nom": "file18.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-02-25',
|
||||
etat: 1,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file17', nom: 'file17.pdf' },
|
||||
{ url: '/path/to/file18', nom: 'file18.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Gauthier",
|
||||
"prenom": "Emma",
|
||||
"responsables":[ {
|
||||
"mail": "emma.gauthier@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Gauthier',
|
||||
prenom: 'Emma',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'emma.gauthier@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2023-01-15",
|
||||
"etat": 2,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file19", "nom": "file19.pdf" },
|
||||
{ "url": "/path/to/file20", "nom": "file20.pdf" }
|
||||
]
|
||||
dateMAJ: '2023-01-15',
|
||||
etat: 2,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file19', nom: 'file19.pdf' },
|
||||
{ url: '/path/to/file20', nom: 'file20.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Garcia",
|
||||
"prenom": "Lucas",
|
||||
"responsables":[ {
|
||||
"mail": "lucas.garcia@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Garcia',
|
||||
prenom: 'Lucas',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'lucas.garcia@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-12-10",
|
||||
"etat": 0,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file21", "nom": "file21.pdf" },
|
||||
{ "url": "/path/to/file22", "nom": "file22.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-12-10',
|
||||
etat: 0,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file21', nom: 'file21.pdf' },
|
||||
{ url: '/path/to/file22', nom: 'file22.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Perrin",
|
||||
"prenom": "Chloe",
|
||||
"responsables":[ {
|
||||
"mail": "chloe.perrin@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Perrin',
|
||||
prenom: 'Chloe',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'chloe.perrin@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-11-05",
|
||||
"etat": 3,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file23", "nom": "file23.pdf" },
|
||||
{ "url": "/path/to/file24", "nom": "file24.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-11-05',
|
||||
etat: 3,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file23', nom: 'file23.pdf' },
|
||||
{ url: '/path/to/file24', nom: 'file24.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Robin",
|
||||
"prenom": "Nathan",
|
||||
"responsables":[ {
|
||||
"mail": "nathan.robin@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Robin',
|
||||
prenom: 'Nathan',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'nathan.robin@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-10-15",
|
||||
"etat": 1,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file25", "nom": "file25.pdf" },
|
||||
{ "url": "/path/to/file26", "nom": "file26.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-10-15',
|
||||
etat: 1,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file25', nom: 'file25.pdf' },
|
||||
{ url: '/path/to/file26', nom: 'file26.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Richard",
|
||||
"prenom": "Lea",
|
||||
"responsables":[ {
|
||||
"mail": "lea.richard@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Richard',
|
||||
prenom: 'Lea',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'lea.richard@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-09-10",
|
||||
"etat": 2,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file27", "nom": "file27.pdf" },
|
||||
{ "url": "/path/to/file28", "nom": "file28.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-09-10',
|
||||
etat: 2,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file27', nom: 'file27.pdf' },
|
||||
{ url: '/path/to/file28', nom: 'file28.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Petit",
|
||||
"prenom": "Tom",
|
||||
"responsables":[ {
|
||||
"mail": "tom.petit@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Petit',
|
||||
prenom: 'Tom',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'tom.petit@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-08-05",
|
||||
"etat": 0,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file29", "nom": "file29.pdf" },
|
||||
{ "url": "/path/to/file30", "nom": "file30.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-08-05',
|
||||
etat: 0,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file29', nom: 'file29.pdf' },
|
||||
{ url: '/path/to/file30', nom: 'file30.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Durand",
|
||||
"prenom": "Sarah",
|
||||
"responsables":[ {
|
||||
"mail": "sarah.durand@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Durand',
|
||||
prenom: 'Sarah',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'sarah.durand@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-07-10",
|
||||
"etat": 3,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file31", "nom": "file31.pdf" },
|
||||
{ "url": "/path/to/file32", "nom": "file32.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-07-10',
|
||||
etat: 3,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file31', nom: 'file31.pdf' },
|
||||
{ url: '/path/to/file32', nom: 'file32.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Lemoine",
|
||||
"prenom": "Maxime",
|
||||
"responsables":[ {
|
||||
"mail": "maxime.lemoine@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Lemoine',
|
||||
prenom: 'Maxime',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'maxime.lemoine@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-06-05",
|
||||
"etat": 1,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file33", "nom": "file33.pdf" },
|
||||
{ "url": "/path/to/file34", "nom": "file34.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-06-05',
|
||||
etat: 1,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file33', nom: 'file33.pdf' },
|
||||
{ url: '/path/to/file34', nom: 'file34.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Marchand",
|
||||
"prenom": "Elodie",
|
||||
"responsables":[ {
|
||||
"mail": "elodie.marchand@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Marchand',
|
||||
prenom: 'Elodie',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'elodie.marchand@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-05-15",
|
||||
"etat": 2,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file35", "nom": "file35.pdf" },
|
||||
{ "url": "/path/to/file36", "nom": "file36.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-05-15',
|
||||
etat: 2,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file35', nom: 'file35.pdf' },
|
||||
{ url: '/path/to/file36', nom: 'file36.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Blanc",
|
||||
"prenom": "Louis",
|
||||
"responsables":[ {
|
||||
"mail": "louis.blanc@example.com",
|
||||
"telephone": "0123456789"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Blanc',
|
||||
prenom: 'Louis',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'louis.blanc@example.com',
|
||||
telephone: '0123456789',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-04-10",
|
||||
"etat": 0,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file37", "nom": "file37.pdf" },
|
||||
{ "url": "/path/to/file38", "nom": "file38.pdf" }
|
||||
]
|
||||
dateMAJ: '2022-04-10',
|
||||
etat: 0,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file37', nom: 'file37.pdf' },
|
||||
{ url: '/path/to/file38', nom: 'file38.pdf' },
|
||||
],
|
||||
},
|
||||
{
|
||||
"eleve": {
|
||||
"nom": "Fontaine",
|
||||
"prenom": "Camille",
|
||||
"responsables":[ {
|
||||
"mail": "camille.fontaine@example.com",
|
||||
"telephone": "0987654321"
|
||||
}]
|
||||
eleve: {
|
||||
nom: 'Fontaine',
|
||||
prenom: 'Camille',
|
||||
responsables: [
|
||||
{
|
||||
mail: 'camille.fontaine@example.com',
|
||||
telephone: '0987654321',
|
||||
},
|
||||
],
|
||||
},
|
||||
"dateMAJ": "2022-03-20",
|
||||
"etat": 3,
|
||||
"fichiers": [
|
||||
{ "url": "/path/to/file39", "nom": "file39.pdf" },
|
||||
{ "url": "/path/to/file40", "nom": "file40.pdf" }
|
||||
]
|
||||
}
|
||||
];
|
||||
dateMAJ: '2022-03-20',
|
||||
etat: 3,
|
||||
fichiers: [
|
||||
{ url: '/path/to/file39', nom: 'file39.pdf' },
|
||||
{ url: '/path/to/file40', nom: 'file40.pdf' },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user