mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
35 lines
957 B
JavaScript
35 lines
957 B
JavaScript
export const levels = [
|
|
{ value: '1', label: 'TPS - Très Petite Section' },
|
|
{ value: '2', label: 'PS - Petite Section' },
|
|
{ value: '3', label: 'MS - Moyenne Section' },
|
|
{ value: '4', label: 'GS - Grande Section' },
|
|
{ value: '5', label: 'CP' },
|
|
{ value: '6', label: 'CE1' },
|
|
{ value: '7', label: 'CE2' },
|
|
{ value: '8', label: 'CM1' },
|
|
{ value: '9', label: 'CM2' },
|
|
];
|
|
|
|
export const genders = [
|
|
{ value: '1', label: 'Garçon' },
|
|
{ value: '2', label: 'Fille' },
|
|
];
|
|
|
|
export const RegistrationFormStatus = {
|
|
STATUS_TO_SEND: 1,
|
|
STATUS_PENDING: 2,
|
|
STATUS_TO_VALIDATE: 3,
|
|
STATUS_TO_FOLLOW_UP: 4, // Non testé
|
|
STATUS_VALIDATED: 5,
|
|
STATUS_ARCHIVED: 6,
|
|
STATUS_SEPA_PENDING: 7,
|
|
STATUS_SEPA_TO_SEND: 8,
|
|
};
|
|
|
|
export const CURRENT_YEAR_FILTER = 'current_year';
|
|
export const NEXT_YEAR_FILTER = 'next_year';
|
|
export const HISTORICAL_FILTER = 'historical';
|
|
|
|
export const PARENT_FILTER = 'parents';
|
|
export const SCHOOL_FILTER = 'school';
|