{% extends 'base.html' %} {% block title %}{{ _('My Bets History') }}{% endblock %} {% block content %}
| {{ _('Date') }} | {{ _('Round') }} | {{ _('Bet') }} | {{ _('Multiplier') }} | {{ _('Profit') }} | {{ _('Status') }} |
|---|---|---|---|---|---|
| {{ bet.created_at.strftime('%d/%m/%Y %H:%M') }} | #{{ bet.round_id }} | {{ "{:,.0f}".format(bet.amount) }} XAF | {% if bet.cashed_out %} {{ "%.2f"|format(bet.cashout_multiplier) }}x {% else %} - {% endif %} | {{ "{:+,.0f}".format(bet.profit) }} XAF | {% if bet.cashed_out %} ✓ {{ _('Won') }} {% else %} ✗ {{ _('Lost') }} {% endif %} |
{{ _("You haven't placed any bets yet.") }}
{{ _('Start Playing') }}