{% extends 'equipe/_layout.html.twig' %} {% block title %}Présences & départs - {{ groupe.nom }}{% endblock %} {% block page_title %}Présences & départs - {{ groupe.nom }}{% endblock %} {% block toolbar_actions %} Liste d'évacuation {% endblock %} {% block body %} {% if is_granted('ROLE_DIRECTION') and personnesAutoriseesEnAttente is not empty %}

Personnes autorisées en attente de validation (§4.2.e)

{% for personne in personnesAutoriseesEnAttente %}
{{ personne.prenom }} {{ personne.nom }} - pour {{ personne.enfant.prenom }} {{ personne.enfant.nom }} {% if personne.proposePar %}(proposée par {{ personne.proposePar.prenom }} {{ personne.proposePar.nom }}){% endif %}
{% endfor %}
{% endif %} {% if lignes is empty %}
Aucun enfant actif dans ce groupe.
{% else %}
{% for ligne in lignes %} {% endfor %}
Enfant Statut Arrivée Départ Retard Départ anticipé
{{ ligne.enfant.prenom }} {{ ligne.enfant.nom }} {{ ligne.presence.statut.label }} {{ ligne.presence.heureArriveeReelle ? ligne.presence.heureArriveeReelle|date('H:i') : '-' }} {{ ligne.presence.heureDepartReelle ? ligne.presence.heureDepartReelle|date('H:i') : '-' }} {{ ligne.retardMinutes ? ligne.retardMinutes ~ ' min' : '-' }} {{ ligne.departAnticipeMinutes ? ligne.departAnticipeMinutes ~ ' min' : '-' }}
{% for ligne in lignes %}
{{ ligne.enfant.prenom }} {{ ligne.enfant.nom }} {% if ligne.restrictionActive %} Restriction familiale/judiciaire active{% endif %}
{% if ligne.restrictionActive %}
Restriction active : aucun départ ne peut être pointé pour cet enfant. Contacter la Direction.
{% endif %}

Pointer l'arrivée

Pointer le départ

Signaler une tentative de départ non autorisée

Corriger le pointage du jour

{% if is_granted('ROLE_DIRECTION') %}

Déclarer une autorisation ponctuelle (aujourd'hui uniquement)

{% endif %}
{% endfor %} {% endif %} {% endblock %}