{% extends "base.html" %} {% block title %}Users{% endblock %} {% block content %}
Manage accounts, roles, MFA, and lockouts.
| Username | Role | MFA | Status | Last login | Actions | |
|---|---|---|---|---|---|---|
| {{ u.username }}{% if u.id == current_user.id %} (you){% endif %} | {{ u.email }} | {{ u.role }} | {{ 'on' if u.mfa_enabled else 'off' }} | {% if u.is_locked %} locked {% else %} {{ 'active' if u.is_active else 'disabled' }} {% endif %} | {% if u.last_login_at %}{{ u.last_login_at.strftime('%Y-%m-%d %H:%M') }}{% else %}never{% endif %} | Edit {% if u.mfa_enabled %} {% endif %} {% if u.is_locked %} {% endif %} {% if u.id != current_user.id %} {% endif %} |