{% extends "base.html" %} {% block title %}Users{% endblock %} {% block content %}

Users

Manage accounts, roles, MFA, and lockouts.

+ New user
{% for u in users %} {% endfor %}
UsernameEmailRoleMFAStatusLast loginActions
{{ 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 %}
{% endblock %}