{% extends "base.html" %} {% block title %}Utilisateurs{% endblock %} {% block content %} {% for u in users %} {% endfor %}
Nom d'utilisateur Email 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 %}
{% endblock %}