{% extends 'base.html.twig' %} {% block title %} | Dashboard {% endblock %} {% block body %}
{% for message in app.flashes('success') %}
{% endfor %} {% for message in app.flashes('error') %}
{% endfor %}

Nombre d'enfants

{{ get_nombre_enfants() }}
{% set enfants = get_last_ten_children() %} {% for enfant in enfants %} {% endfor %}
Nom & Prénoms Date de naissance Action
{{ enfant.dateNaissance|date('d/m/Y') }} {% set suiviUrl = is_granted(constant('App\\Entity\\User::ROLE_EDUCATEUR')) ? 'app_educateur_suivi_parent' : 'app_children_suivi_parent' %}   {% if is_granted(constant('App\\Entity\\User::ROLE_ADMIN')) %}   {% endif %} {% if is_granted(constant('App\\Entity\\User::ROLE_SUPER_ADMIN')) %} {% endif %}
{% endblock %}