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

User Management

Manage users and permissions

Back to Admin
{% if search %} Clear {% endif %}
Users ({{ pagination.total }})
{% if users %}
{% for user in users %} {% endfor %}
Username Email 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 %}
{% if pagination.pages > 1 %} {% endif %} {% else %}

No users found

{% endif %}
{% endblock %}