{% extends "base.html" %} {% block title %}Utilisateurs{% endblock %} {% block content %}
| Nom d'utilisateur | Rôle | Statut | Créé le | Actions | |
|---|---|---|---|---|---|
| {{ u.username }} {% if u.id == current_user.id %}(vous){% endif %} | {{ u.email or "—" }} | {% if u.is_admin %} Admin {% else %} Utilisateur {% endif %} | {% if u.actif %} Actif {% else %} Inactif {% endif %} | {{ u.created_at | date_fr }} | Modifier {% if u.id != current_user.id %} {% endif %} |