{% extends "admin/base.html" %} {% block title %}Users - Admin{% endblock %} {% block content %} {% if error %}
{{ error }}
{% endif %}

Add User

All Users

{% for u in users %} {% else %} {% endfor %}
Username Email Role Created Actions
{{ u.username }} {{ u.email }} {{ u.role }} {{ u.created_at | format_date }} {% if u.id != user.id %}
{% else %} (you) {% endif %}
No users found.
{% endblock %}