{% 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 #}
Responsables |
{% for manager in unit.managers.all %}
{{ manager }} |
{% endfor %}
{# unit's teachers #}
Enseignants |
{% for teacher in unit.teachers.all %}
{{ teacher }} |
{% endfor %}
{% endblock %}