{% extends 'base.html' %}{% block heading %}User Administration{% endblock %}{% block content %}
Passwords are stored as salted hashes. Admins can create users, reset passwords and deactivate accounts. The initial administrator is securely bootstrapped from server-side environment credentials. Passwords are never stored in plaintext.
| User | Role | Status | Password | Actions |
|---|---|---|---|---|
| {{u.username}} | {{u.role}} | {{'Active' if u.active else 'Removed'}} | {{'Must change' if u.must_change_password else 'Set'}} | {% if u.active %}{% endif %} |