{% extends "base.html" %} {% block title %}Admin Dashboard - ASF TestArena{% endblock %} {% block content %}

User Management

{% for user in users %} {% endfor %}
ID Username Role Created At Actions
{{ user.id }} {{ user.username }} {% if user.is_admin %} Admin {% else %} User {% endif %} {{ user.created_at.strftime('%Y-%m-%d %H:%M') }} {% if user.id != current_user.id %}
{% endif %}
{% endblock %}