{% extends "base.html" %} {% block title %}User Management - Admin - {{ app_name }}{% endblock %} {% block content %}
Manage users and permissions
| Username | Joined | Sets | Instructions | Status | Actions | |
|---|---|---|---|---|---|---|
| {{ user.username }} {% if user.id == current_user.id %} You {% endif %} | {{ user.email }} | {{ user.created_at.strftime('%Y-%m-%d') }} | {{ user_stats[user.id]['sets'] }} | {{ user_stats[user.id]['instructions'] }} | {% if user.is_admin %} Admin {% else %} User {% endif %} |
{% if user.id != current_user.id %}
{% else %}
Cannot modify yourself
{% endif %}
|
No users found