{% extends "layout.html" %} {% block title %}Users{% endblock %} {% block content %} {% include "modal.html" %} {% if current_user.is_authenticated %}
Users
{% for user in users %} {% endfor %}
IDUsernameLoginsLast loginFailed loginsLast failedTOTPTOTP initializedOTP onlyAdmin
{{ user.id }} {{ user.username }} {{ user.sign_count }} {{ user.last_login | ctime }} {{ user.failed_logins }} {% if user.last_failed %}{{ user.last_failed | ctime }}{% endif %} {% if user.totp_secret %}{% endif %} Delete

FIDO2 tokens
{% for authenticator in authenticators %} {% endfor %}
IDNameUsername
{{ authenticator.id }} {{ authenticator.name }} {{ usermap[authenticator.user] }} Delete

{% endif %} {% endblock %}