{% extends "Palto/base.html" %}
{% load dict_tags %}
{% block body %}
{# session's information #}
{# session's students information #}
Elève |
Présence |
Absence |
{% for student, session_student_data in session_students_data.items %}
{{ student }} |
{% with attendance=session_student_data|dict_get:"attendance" %}
{% if attendance != None %}
{{ attendance.date }}
{% endif %}
{% endwith %}
|
{% with absence=session_student_data|dict_get:"absence" %}
{% if absence != None %}
Détails
{% endif %}
{% endwith %}
|
{% endfor %}
{# TODO(Raphaël): export boutton #}
{% endblock %}