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

Manage Users

Admin users cannot view individual user reports to maintain privacy.

{% for user in users %} {% endfor %}
ID Username Email Admin Status
{{ user.id }} {{ user.username }} {{ user.email }} {% if user.is_admin %} Admin {% else %} User {% endif %}
{% endblock %}