{% extends "base.html" %} {% block title %}Utilisateurs — GMAO Collège{% endblock %} {% block content %}

Utilisateurs

Nouvel utilisateur
{% for user in users %} {% endfor %}
NomIdentifiantEmailRôleStatutActions
{{ user.full_name }} {{ user.username }} {{ user.email }} {% if user.role == 'admin' %}Administrateur {% elif user.role == 'chef' %}Chef d'établissement {% elif user.role == 'technicien' %}Technicien {% elif user.role == 'demandeur' %}Demandeur {% else %}{{ user.role }}{% endif %} {% if user.is_active %}Actif {% else %}Inactif{% endif %}
{% if user.id != current_user.id %}
{% endif %}
{% endblock %}