| Nom | {{ classroom.name }} |
|---|---|
| Niveau | {{ classroom.level }} |
| Titulaire | {% if mainteacher is null %} {% else %} {{mainteacher.fullName}} {% endif %} |
| Classe d'examen | {% if (classroom.apc == true) %} OUI {% else %} NON {% endif %} |
{% if is_granted('ROLE_ADMIN') %}
Recap. Seq
Bull Seq
Bull Trim
Bull Ann
Recap Trim
Recap Ann
Bull Ann V1
{% endif %}
Liste des élèves incrits dans la classe
| Matricule | Nom | Prénom | Photo | Action |
|---|---|---|---|---|
| {{ std.matricule }} | {{ std.lastname }} | {{ std.firstname }} | {{ fileExists[std.id] }} | {% if is_granted('ROLE_ADMIN') %} {% endif %} | {% set effectif = effectif + 1 %}
| Effectif | {{ effectif }} | |||
Matières programmées dans la classe
| Module | Code | Intitulé | Coef | Enseignant |
|---|---|---|---|---|
| {{ module.name }} | {{ course.code }} | {{ course.wording }} | {{ course.coefficient }} | {% if attributions[course.id] is defined %} {% if is_granted('ROLE_ADMIN') %} {{attributions[course.id].teacher.fullName}} {% else %} {{attributions[course.id].teacher.fullName}} {% endif %} {% else %} {% if is_granted('ROLE_ADMIN') %} Pas encore attribue {% endif %} {% endif %} | {% set totalCoef = totalCoef+course.coefficient %}
| total cumul coef | {{ totalCoef }} | |||