{% extends "base.html" %} {% block title %}Personnel — GMAO{% endblock %} {% block content %}

Personnel

{% if staff %}
{% for s in staff %} {% endfor %}
Nom Prénom Fonction Service Email Téléphone Actif Actions
{{ s.last_name or '—' }} {{ s.first_name or '—' }} {{ s.function or '—' }} {{ s.department or '—' }} {{ s.email or '—' }} {{ s.phone or '—' }} {% if s.is_active %} Actif {% else %} Inactif {% endif %}
{% else %}
Aucun membre du personnel enregistré.
{% endif %}
{% endblock %}