{% extends 'parents/_layout.html.twig' %} {% block title %}Photos - {{ enfant.prenom }} {{ enfant.nom }}{% endblock %} {% block page_title %}Photos - {{ enfant.prenom }} {{ enfant.nom }}{% endblock %} {% block body %}

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 %}

Vidéos

{% if videos is empty %}
Aucune vidéo publiée pour le moment.
{% else %}
{% for ligne in videos %}
{{ ligne.video.nomOriginal }}
{{ ligne.video.dateAjout|date('d/m/Y') }} - {{ (ligne.video.tailleOctets / 1000000)|round(1) }} Mo
Télécharger
{% endfor %}
{% endif %}
{% endblock %}