{% for i, seanceExercice in seance.exercices %} {% if seanceExercice.idExercice is not null %} {# EXERCICE APPLIQUE #}
{% include 'seance/_fragments/seanceExercice.html.twig' with { 'numero': seanceExercice.numero, 'idExercice': seanceExercice.id, 'base_url': base_url, 'dureeTotal': seanceExercice.dureeTotal, 'dureeMinutes': seanceExercice.dureeMinutes, 'dureeSecondes': seanceExercice.dureeSecondes, 'nomExercice': seanceExercice.nomExercice, 'consigne': seanceExercice.consigne, 'i': i, 'visuel': seanceExercice.visuel, 'volume': seanceExercice.volume, 'isGroupe': seanceExercice.isGroupe, 'statut': seanceExercice.statut.value, 'dureeExercice': seanceExercice.dureeExercice } %}
{# DROPZONE #} {% else %}
{% include 'seance/_fragments/seanceExerciceEmpty.html.twig' with {'numero': seanceExercice.numero} %}
{% endif %} {% endfor %} {% include "seance/_fragments/tpl_seanceExercice.html.twig" %}