{% extends "admin/base.html" %} {% block title %}Wallets Management{% endblock %} {% block content %}
| User | 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 |
|
No wallets found
๐ก 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.