{% extends "webapp/base.html" %} {% block title %}{{ t('wallet') }} — FIGHTSKILL{% endblock %} {% block content %}
← {{ t('back') }}

{{ t('wallet') }}

{{ t('wallet_note') }}

{% for w in wallets %} {% if w.kind=='deposit' %}
💰
💳 {{ t('deposit_wallet') }}
{{ "%.2f"|format(w.balance) }} USDT
Use this balance to enter matches and tournaments
{% else %}
🏆
🏆 Withdrawal Wallet
{{ "%.2f"|format(w.balance) }} USDT
Prize money from tournaments — available for withdrawal
{% endif %} {% endfor %}

{{ t('transactions') }}

{% for tx in transactions %} {% else %} {% endfor %}
{{ t('type') }} {{ t('amount') }} {{ t('reason') }} {{ t('date') }} {{ t('status') }}
{{ tx.kind }} {{ '+' if tx.amount>0 else '' }}{{ tx.amount }} {{ tx.reason or '—' }} {{ tx.created_at.strftime('%m/%d %H:%M') }} {{ tx.status }}
{{ t('no_data') }}
{% endblock %}