{% extends 'admin/base.html' %} {% block page_title %}Round #{{ game_round.id }}{% endblock %} {% block admin_content %}

Round Details

Round ID #{{ game_round.id }}
Crash Point {% set cp = game_round.crash_point %} {{ cp|round(2) }}x
Status {{ game_round.status|capitalize }}
Started At {{ game_round.started_at.strftime('%Y-%m-%d %H:%M:%S') if game_round.started_at else '-' }}
Crashed At {{ game_round.crashed_at.strftime('%Y-%m-%d %H:%M:%S') if game_round.crashed_at else '-' }}

Round Statistics

Total Bets {{ game_round.total_bets }}
Total Wagered {{ "{:,.0f}".format(game_round.total_wagered) }} XAF
Total Won {{ "{:,.0f}".format(game_round.total_won) }} XAF
House Profit {% set profit = game_round.total_wagered - game_round.total_won %} {{ "{:+,.0f}".format(profit) }} XAF

Provably Fair

Round Hash {{ game_round.round_hash }}
Server Seed {{ game_round.server_seed }}

Bets in This Round ({{ bets|length }})

{% for bet in bets %} {% else %} {% endfor %}
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
{% endblock %}