{% extends "Palto/base/base-features.html" %} {% block page-title %} Sessions {% endblock %} {% block navigation-title %} Sessions {% endblock %} {% block body %} {{ block.super }} {# table of all the sessions #} {# show the information for every session #} {% for session in sessions %} {% endfor %}
Identifiant UE Horaire Enseignant Effectif
{{ session.short_id }} {{ session.unit.name }} {{ session.start }}
{{ session.end }}
{{ session.teacher }} {{ session.attendances.all|length }} / {{ session.group.students.all|length }}
{# page navigator #}
{% if sessions.has_previous %} Previous {% endif %} {{ sessions.number }} {% if sessions.has_next %} Next {% endif %}
{% endblock %}