{% extends 'base.html.twig' %} {% block title %}{{parent()}}: Bilan Intermédiaire{% endblock %} {% block body %} {% include 'breadcrumb.html.twig' %}

Bilan Intermédiaire

{% for module in formationModules %}

{{ module.module.libelle }}

{% for lecon in module.module.modulelecons|sort((a, b) => a.ordre <=> b.ordre) %} {{ lecon.lecon.libelle }}
{% endfor %}
{% endfor %}
{% endblock %} {% block body_before_end %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}