{% extends "Palto/base/base-features.html" %} {% load dict_tags %} {% block body %} {{ block.super }} {# unit's information #}
Identifiant {{ unit.id }}
Nom {{ unit.name }}
Département {{ unit.department.name }}
Mail {% if unit.email != None %}{{ unit.email }}{% else %} / {% endif %}
Sessions {{ unit.sessions.all|length }}
{# unit's managers #} {% for manager in unit.managers.all %} {% endfor %}
Responsables
{{ manager }}
{# unit's teachers #} {% for teacher in unit.teachers.all %} {% endfor %}
Enseignants
{{ teacher }}
{% endblock %}