{% extends "base.html" %} {% block title %}User Management{% endblock %} {% block content %}

User Management

Add User
{% for user in users %} {% endfor %}
Username Full Name Email Role Created Status Actions
{{ user.username }} {{ user.full_name or '—' }} {{ user.email }} {{ user.role.replace('_',' ')|title }} {{ user.created_at.strftime('%Y-%m-%d') }} {% if user.active %} Active {% else %} Disabled {% endif %} {% if user.id != current_user.id %}
{% endif %}
{% endblock %}