{% extends 'parents/_layout.html.twig' %} {% block title %}Fil du jour - {{ enfant.prenom }} {{ enfant.nom }}{% endblock %} {% block page_title %}Fil du jour - {{ fil.date|date('d/m/Y') }}{% endblock %} {% block toolbar_actions %} ← Jour précédent Jour suivant → {% endblock %} {% block body %}
{# ---------- Alimentation ---------- #}
{% for repas in fil.repas %}
{{ repas.dateHeure|date('H:i') }} - {{ repas.moment.label }} - {{ repas.quantiteMangee.label }}{% if repas.menu %} ({{ repas.menu }}){% endif %}{% if repas.commentaire %} - {{ repas.commentaire }}{% endif %}
{% if repas.particularite %}
{{ repas.particularite }}
{% endif %}
{% else %}
Aucun repas saisi ce jour.
{% endfor %}
{# ---------- Sommeil / Repos ---------- #}
{% for sieste in fil.siestes %}
{{ sieste.dateHeure|date('H:i') }}{% if sieste.heureFin %} – {{ sieste.heureFin|date('H:i') }}{% endif %} - {{ sieste.qualite.label }}{% if sieste.commentaire %} - {{ sieste.commentaire }}{% endif %}
{% else %}
Aucune sieste saisie ce jour.
{% endfor %}
{# ---------- Hygiène & Santé ---------- #}
{{ fil.nombreChanges }} change(s) aujourd'hui
{% for soin in fil.soins %}
{{ soin.dateHeure|date('H:i') }} - {{ soin.type.label }}{% if soin.commentaire %} - {{ soin.commentaire }}{% endif %}
{% if soin.particularite %}
{{ soin.particularite }}
{% endif %}
{% else %}
Aucun soin saisi ce jour.
{% endfor %}
{# ---------- Activités pédagogiques et ludiques ---------- #}
{% for activite in fil.activites %}
{{ activite.dateHeure|date('H:i') }} {% if activite.theme %} - {{ activite.theme.libelle }}{% endif %} {% if activite.descriptionEffective %} - {{ activite.descriptionEffective }}{% endif %} {% if activite.participation %} - {{ activite.participation.label }}{% endif %}
{% else %}
Aucune activité saisie ce jour.
{% endfor %}
{# ---------- Socialisation et comportement ---------- #}
{% for humeur in fil.humeurs %}
{{ humeur.dateHeure|date('H:i') }} - {{ humeur.humeur.label }} {% if humeur.relationEnfants %} - Avec les autres enfants : {{ humeur.relationEnfants.label }}{% endif %} {% if humeur.relationAdultes %} - Avec les adultes : {{ humeur.relationAdultes.label }}{% endif %}
{% else %}
Aucune note d'humeur saisie ce jour.
{% endfor %}
{# ---------- Commentaires de l'éducatrice ---------- #}
{% for synthese in fil.syntheseJournalieres %}
{{ synthese.dateSaisie|date('H:i') }}
{% if synthese.observations %}

Observations : {{ synthese.observations }}

{% endif %} {% if synthese.pointsAttention %}

Points d'attention : {{ synthese.pointsAttention }}

{% endif %} {% if synthese.motsEncouragement %}

Mots d'encouragement : {{ synthese.motsEncouragement }}

{% endif %}
{% else %}
Aucun commentaire saisi ce jour.
{% endfor %}
{# ---------- Galerie photos ---------- #}
{% if photos is empty %}
Aucune photo publiée pour le moment.
{% else %}
{% for ligne in photos %}
Photo du {{ ligne.photo.dateAjout|date('d/m/Y') }}
{{ ligne.photo.dateAjout|date('d/m/Y') }}
{% endfor %}
{% endif %} {% if videos is not empty %}
{% for ligne in videos %}
{{ ligne.video.nomOriginal }}
Télécharger
{% endfor %}
{% endif %} Voir toute la galerie →
{% endblock %}