{% extends "base.html" %} {% block title %}Manage Users{% endblock %} {% block content %}

Manage Users

{% if users %} {% for user in users %} {% endfor %}
Username Email Admin Force Password Change Actions
{{ user.username }} {{ user.email }} {{ 'Yes' if user.is_admin else 'No' }} {{ 'Yes' if user.force_password_change else 'No' }} Edit
{% else %}

No users found.

{% endif %}
{% endblock %}