{% extends 'admin/base.html' %} {% block page_title %}User: {{ user.username }}{% endblock %} {% block admin_content %}
| Round | Amount | Auto Cashout | Cashed Out | Multiplier | Profit | Time |
|---|---|---|---|---|---|---|
| #{{ bet.round_id }} | {{ "{:,.0f}".format(bet.amount) }} XAF | {{ bet.auto_cashout|round(2) if bet.auto_cashout else '-' }}x | {% if bet.cashed_out %} Yes {% else %} No {% endif %} | {{ bet.cashout_multiplier|round(2) if bet.cashout_multiplier else '-' }}x | {{ "{:+,.0f}".format(bet.profit) }} XAF | {{ bet.created_at.strftime('%Y-%m-%d %H:%M') }} |
| No bets found | ||||||
| ID | Type | Amount | Balance After | Method | Description | Status | Time |
|---|---|---|---|---|---|---|---|
| #{{ tx.id }} | {{ tx.type|capitalize }} | {{ "{:,.0f}".format(tx.amount) }} XAF | {{ "{:,.0f}".format(tx.balance_after) }} XAF | {{ tx.payment_method or '-' }} | {{ tx.description or '-' }} | {{ tx.status }} | {{ tx.created_at.strftime('%Y-%m-%d %H:%M') }} |
| No transactions found | |||||||