{% extends "base.html" %} {% block content %} Admin User Management Admin-only controls for account creation, activation, and password resets. Create User Email Temporary Password Admin account Create User Users Email Role Status Actions {% for user in users %} {{ user.email }} {% if user.is_admin %} admin {% else %} user {% endif %} {% if user.is_active %} active {% else %} inactive {% endif %} {% if user.is_active %}Deactivate{% else %}Activate{% endif %} Reset Password {% endfor %} {% endblock %}
Admin
Admin-only controls for account creation, activation, and password resets.