{% 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 %}
| 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' : '-' }} |