{% extends "base.html" %} {% block title %}{{ t('wallet') }} — {{ t('brand') }}{% endblock %} {% block content %}

{{ t('wallet') }}

{{ t('wallet_note') }}

{% for w in wallets %}
{{ t('deposit_wallet') if w.kind=='deposit' else t('payout_wallet') }}
{{ w.balance }} {{ w.currency }}
{% if w.kind=='deposit' %}
{% 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 %}