{% extends 'admin/base.html' %} {% block page_title %}Game Rounds{% endblock %} {% block admin_content %}
| Round ID | Crash Point | Total Bets | Wagered | Won | House P/L | Time | Actions |
|---|---|---|---|---|---|---|---|
| #{{ round.id }} | {% set cp = round.crash_point %} {{ cp|round(2) }}x | {{ round.total_bets }} | {{ "{:,.0f}".format(round.total_wagered) }} XAF | {{ "{:,.0f}".format(round.total_won) }} XAF | {{ "{:+,.0f}".format(round.total_wagered - round.total_won) }} XAF | {{ round.crashed_at.strftime('%Y-%m-%d %H:%M') if round.crashed_at else '-' }} | View |
| No games found | |||||||