{% extends 'administration/_layout.html.twig' %} {% block title %}Inscriptions & admissions{% endblock %} {% block page_title %}Inscriptions & admissions{% endblock %} {% block body %}

Vue capacité / occupation

{% for ligne in occupation %}
{{ ligne.effectif }}{% if ligne.groupe.capaciteMax %} / {{ ligne.groupe.capaciteMax }}{% endif %}
{{ ligne.groupe.nom }}
{% endfor %}

Enfant

Responsable

Pour un enfant déjà admis, sans passer par l'étape "en attente" - reste compté dans le tunnel Inscriptions des statistiques.

Enfant

Responsable

En attente

{% if enAttente is empty %}
Aucune pré-inscription en attente.
{% else %}
{% for p in enAttente %}
{{ p.prenomEnfant }} {{ p.nomEnfant }} (né(e) le {{ p.dateNaissance|date('d/m/Y') }})
Responsable : {{ p.prenomResponsable }} {{ p.nomResponsable }} ({{ p.telephoneResponsable }}) {% if p.groupeSouhaite %}
Groupe souhaité : {{ p.groupeSouhaite.nom }}{% endif %}
{% endfor %}
{% endif %}

Liste d'attente

{% if listeAttente is empty %}
Personne en liste d'attente.
{% else %}
{% for p in listeAttente %}
{{ p.prenomEnfant }} {{ p.nomEnfant }} (né(e) le {{ p.dateNaissance|date('d/m/Y') }})
Responsable : {{ p.prenomResponsable }} {{ p.nomResponsable }} ({{ p.telephoneResponsable }})
{% endfor %}
{% endif %}

Historique

{% if historique is empty %}
Aucune pré-inscription traitée.
{% else %}
{% for p in historique %} {% endfor %}
Enfant Statut
{{ p.prenomEnfant }} {{ p.nomEnfant }} {{ p.statut.label }} {% if p.enfant %} Voir la fiche {% endif %}
{% endif %}
{% endblock %}