{% extends 'admin/base.html' %} {% block page_title %}User Management{% endblock %} {% block admin_content %}
{{ users.total }} Total Users
{{ active_count }} Active Users
{{ admin_count }} Admins
{{ new_count }} New This Week
{% if search %} Clear {% endif %}
{{ users.total }} users found
{% for user in users.items %} {% else %} {% endfor %}
ID User Contact Balance Activity Status Joined Actions
#{{ user.id }}
Avatar {% if user.is_admin %} {% endif %}
{% if user.email %} {% endif %} {% if user.phone %} {{ user.phone }} {% endif %} {% if not user.email and not user.phone %} No contact {% endif %}
{{ "{:,.0f}".format(user.balance) }} XAF
🎮 {{ user.total_games }}
💰 {{ "{:,.0f}".format(user.total_wagered) }}
📈 {{ "{:+,.0f}".format(user.total_won - user.total_wagered) }}
{% if user.is_active %} Active {% else %} Banned {% endif %}
{{ user.created_at.strftime('%b %d, %Y') }} {{ user.created_at.strftime('%H:%M') }}

No users found

{% if search %}Try a different search term{% else %}No users registered yet{% endif %}

{% if users.pages > 1 %} {% endif %}
{% endblock %}