{% 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.is_admin() %}Administrateur {% elif user.has_permission('patrimoine.edit') %}{{ user.role_label }} {% else %}{{ user.role_label }}{% endif %} {% if user.is_active %}Actif {% else %}Inactif{% endif %}
{% if user.id != current_user.id %}
{% endif %}
{% endblock %}