{% extends "admin/base.html" %} {% block title %}Wallets Management{% endblock %} {% block content %}

๐Ÿ’ฐ Wallets Management

{% for item in wallets_data %} {% set dep = item.deposit or item.wallet %} {% set pwt = item.payout %} {% endfor %}
User Email Deposit Balance Withdrawal Balance Total Actions
{{ item.user.username }}
ID: {{ item.user.id }} ยท #{{ item.user.numeric_id }}
{{ item.user.email }} {{ "%.2f"|format(dep.balance if dep else 0) }} USDT
{{ item.user.display_name }}
{{ "%.2f"|format(pwt.balance if pwt else 0) }} USDT {{ "%.2f"|format((dep.balance if dep else 0)+(pwt.balance if pwt else 0)) }} USDT
{% if not wallets_data %}

No wallets found

{% endif %}

๐Ÿ’ก Note: Deposit Balance is used for match entries. Withdrawal Balance contains prizes and can only be withdrawn. Click the ๐Ÿ’ณ or ๐Ÿ’ธ buttons to set a balance directly.

{% endblock %} {% block scripts %} {% endblock %}