{% extends 'admin/base.html' %} {% block page_title %}Round #{{ game_round.id }}{% endblock %} {% block admin_content %}
| User | Amount | Auto Cashout | Cashed Out | Multiplier | Profit | Time |
|---|---|---|---|---|---|---|
| {{ bet.user.username }} | {{ "{:,.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('%H:%M:%S') }} |
| No bets in this round | ||||||