{% extends 'equipe/_layout.html.twig' %} {% block title %}Fiche de secours - {{ groupe.nom }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block page_title %}Fiche de secours - {{ groupe.nom }}{% endblock %} {% block toolbar_actions %} {% endblock %} {% block body %}

{{ "now"|date('d/m/Y H:i') }} - à imprimer/exporter avant une panne réseau anticipée, ou quotidiennement par précaution (§5.2.i).

Liste d'évacuation ({{ presencesEvacuation|length }} présent(s))

{% if presencesEvacuation is empty %}
Aucun enfant présent actuellement.
{% else %} {% endif %}

Fiche par enfant

{% for ligne in lignes %}

{{ ligne.enfant.prenom }} {{ ligne.enfant.nom }}

Présence du jour : {{ ligne.presenceDuJour ? ligne.presenceDuJour.statut.label : 'Non pointé' }}

Contacts d'urgence : {% for contact in ligne.contactsUrgence %} {{ contact.prenom }} {{ contact.nom }}{% if contact.telephone %} ({{ contact.telephone }}){% endif %}{% if not loop.last %}, {% endif %} {% else %} Aucun contact enregistré. {% endfor %}

Allergies / PAI / consignes médicales / restrictions : {% if ligne.alertes is empty %} Aucune. {% else %}

    {% for alerte in ligne.alertes %}
  • {{ alerte.type.label }} - {{ alerte.description }}
  • {% endfor %}
{% endif %}

Personnes autorisées à récupérer l'enfant : {% for personne in ligne.personnesAutorisees %} {{ personne.prenom }} {{ personne.nom }} ({{ personne.roleLabel }}){% if not loop.last %}, {% endif %} {% else %} Aucune (ou restriction active - voir alertes ci-dessus). {% endfor %}

{% endfor %}
{% endblock %}