{% extends 'template.html.twig' %} {% block title %}Mon Site Démo_formation_index{% endblock %} {% block body %} {% include "nav.html.twig" %}
Nos Formations

Des cours que nous vous proposez

{{ include('flash.html.twig') }} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% if formations %}
{% for formation in formations %}
{{formation.name}}

{{formation.name}}

{{formation.date|date('d/m/Y, H:i')}}
Note Moyenne: {{averagePoints[formation.id] is not null ? averagePoints[formation.id]|number_format(2) : 'N/A'}} {# pour date : formation created_at|date('d/m/Y') #}
{% endfor %}
{% else %}
Il n'y a pas de formation
{% endif %}
{% include "footer.html.twig" %} {% endblock %}