{% extends "base.html" %} {% block content %}

{{ _('User Management') }}

{% for user in users %} {% endfor %}
{{ _('Username') }} {{ _('Actions') }}
{{ user.username }} {% if user.is_admin %}Admin{% endif %} {% if user.id != current_user.id %}
{% endif %}
{% endblock %}