{% extends "Palto/base/base-features.html" %} {% load dict_tags %} {% block page-title %} Session de {{ session.unit.name }} {% endblock %} {% block navigation-title %} Session de {{ session.unit.name }} {% endblock %} {% block body %} {{ block.super }} {# session's information #}
Identifiant {{ session.id }}
Début {{ session.start }}
Durée {{ session.duration }}
Unité d'Enseignement {{ session.unit }}
Enseignant {{ session.teacher }}
Groupe {{ session.group }}
{# session's students information #} {% for student, session_student_data in session_students_data.items %} {% endfor %}
Elève Présence Absence
{{ 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 %}
{# TODO(Raphaël): export boutton #} {% endblock %}