{% extends "base.html" %} {% block content %}
admin :: users
{% for u in users %}
{{ u.username }} {{ u.email }} {% if u.role == "admin" %} [admin] {% endif %} {% if u.banned %} [banned] {% endif %} {% if !u.email_verified %} [unverified] {% endif %}
{% if !u.banned %} ban {% else %}
{% endif %}
{% endfor %} {% if users.is_empty() %}
no users found
{% endif %} {% endblock %}