{% extends 'secretariat/action.html' %}
{% load static %}
{% load customfilter %}
{% block body %}
| Récapitulatif de toutes les notes |
 |
| Notes{% if colleur %} de {{colleur}}{% endif %} |
{% if notes %}
| Matière |
Classe |
Semaine |
Date |
Heure |
Élève |
Note |
{% for note in notes %}
| {{note.matiere}} |
{{note.classe|upper}} |
S{{note.semaine.numero}} |
{{note.date_colle|date:"l j F"}} |
{{note.heure|heure}} |
{% if note.eleve %}{{note.eleve.user}}{% else %}Élève fictif{% endif %} |
{% if note.note == 22 %}Abs.{% elif note.note == 21 %}n.n.{% else %}{{note.note}}{% endif %} |
{% endfor %}
{% endif %}
{% endblock %}