{% extends 'base.html.twig' %} {% block title %}{{parent()}}: Formation {{ formation.designation }}{% endblock %} {% block body %} {% include 'breadcrumb.html.twig' %} {# variables twig pour les sous-tables #} {% if est_prof or est_sousprof %} {% set BOUTON_ELEVE_COMPTERENDU = true %} {% else %} {% set BOUTON_ELEVE_COMPTERENDU = false %} {% endif %} {% if est_admin %} {% set CACHER_PROF_SELECTION = false %} {% set CACHER_ELEVE_SELECTION = false %} {% else %} {% set CACHER_PROF_SELECTION = true %} {% set CACHER_ELEVE_SELECTION = true %} {% endif %}
{% set onglet_actif='eleve' %} {% if onglet is defined %} {% if onglet %} {% set onglet_actif=onglet %} {% endif %} {% endif %}

Les élèves de la formation

{% include '@Formation/Default/table_eleve.html.twig' %} {% if est_admin %} {% endif %}

Les professeurs de la formation

{% include '@Formation/Default/table_prof.html.twig' %} {% if est_admin %} {% endif %}

Les modules de la formation

{% include '@Formation/Default/table_module.html.twig' %}

Liste des comptes-rendus

{% include '@Formation/Compterenduformation/index_inner.html.twig' %}

Bilan

Activités réalisées Grammaire Vocabulaire Phonétique Commentaire
{{ formation.activitesrealisees|raw }} {{ formation.grammaire|raw }} {{ formation.vocabulaire|raw }} {{ formation.phonetique|raw }} {{ formation.commentaire|raw }}

Informations sur la Formation {{ formation.id }}

{% endblock body %} {% block body_before_end %} {% include 'generic_popin.html.twig' with { 'contenu': '__CONTENU__', 'titre': '__TITRE__', 'show_validate_popin' : true, 'show_cancel_popin' : true, 'wide': true } only %} {% include 'generic_popin.html.twig' with { 'contenu': '__CONTENU__', 'titre': '__TITRE__', 'show_validate_popin' : true, 'show_cancel_popin' : true, 'wide': true, 'tall': true, 'suffixe_id': '_eleve' } only %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}