{% extends 'base.html.twig' %} {% block title %} {{ parent() }} : Accueil {% endblock title %} {% block body %} {% include 'breadcrumb.html.twig' %}
{% for formation in formations %} {% for module in modules[formation.id] %}

{{ module.libelle }}

{% for lecon in lecons[module.id] %} {% set keyInfoSupp = formation.id ~ '_' ~ module.id ~ '_' ~ lecon.id %} {% set bgClass="bg-success" %} {% if (completude[keyInfoSupp] == 0) %} {% set bgClass="bg-secondary" %} {% elseif (completude[keyInfoSupp] < 20) %} {% set bgClass="bg-danger" %} {% elseif (completude[keyInfoSupp] < 70) %} {% set bgClass="bg-warning" %} {% endif %}
{{ completude[keyInfoSupp] }}%
{% endfor %}
{% endfor %} {% endfor %}
{% endblock body %}