{% extends 'base.html' %} {% from "components.html" import render_thead %} {% from "macros/_forms.html" import render_form %} {% from "macros/_tables.html" import table, thead %} {% from "macros/_icons.html" import icon %} {% block main %}
{{ thead(["Status", "Username", "Role", "LastLogin"]) }} {% for user in users %} {% endfor %}
{% if user.status.name == "ACTIVE" %} radio_button_checked {% else %} radio_button_unchecked {% endif %} {{ user.username }} {{ user.role.name|upper }} {{ user.activity.last_login|datetime }}
add
{% endblock %}