{% extends 'admin/base.html' %} {% block page_title %}User Management{% endblock %} {% block admin_content %}
| ID | User | Contact | Balance | Activity | Status | Joined | Actions |
|---|---|---|---|---|---|---|---|
| #{{ user.id }} |
|
{% if user.email %}
{{ user.email|truncate(20) }}
{% 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 %} |
|||||||