{# pages/users/list.html — admin user management list #} {% extends "base.html" %} {% block title %}Users — {{ title | default("Admin") }}{% endblock %} {% block breadcrumb %} {{ super() }} / Users {% endblock %} {% block content %}
{% for u in users %} {% endfor %}
Email Full Name Roles Superuser Active Last Login Actions
{{ u.email }} {{ u.full_name or '—' }}
{% for r in u.roles %} {{ r.name }} {% endfor %} {% if not u.roles %} {% endif %}
{% if u.is_superuser %} Yes {% else %} No {% endif %} {% if u.is_active %} Active {% else %} Inactive {% endif %} {{ u.last_login.strftime('%Y-%m-%d %H:%M') if u.last_login else 'Never' }} Edit
{% endblock %}