N° |
|
{% set totalCoef = 0 %}
{% for module in room.modules %}
{% for course in module.courses %}
{% if course.id in checkedValues %}
{% set totalCoef = totalCoef + course.coefficient %}
{{ course.coefficient }}
{{ course.wording }} |
{% endif %}
{% endfor %}
{% endfor %}
{{ totalCoef }}
TOTAL
|
MOYENNE/20
|
|---|---|---|---|---|
| {{ loop.index }} | {{ std.lastname}} | {% for module in room.modules %} {% for course in module.courses %} {% if course.id in checkedValues %} {% for mark in datas %} {% if std.id == mark.student.id %} {% if mark.evaluation.course.wording == course.wording %} {% set i = i+1 %}{% if mark.weight == 1 %} {{ mark.value }} {% set totalCoef = totalCoef + mark.evaluation.course.coefficient %} {% set NCoef = NCoef + mark.value * mark.evaluation.course.coefficient %} {% else %} / {% endif %} | {% endif %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endfor %}{{ totalCoef }} | {% if totalCoef != 0 %} {{ (NCoef/totalCoef)|round(2,'floor') }} {% else %} / {% endif %} |
NB:
Chaque élève est tenu de vérifier la conformité des informations ci dessus mentionnées et en cas de problème, se rapprocher l'enseignant.