{% extends "base.html" %} {% block title %}Admin Dashboard - ASF TestArena{% endblock %} {% block content %}
| 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 %} |