{% extends 'base.html' %} {% block title %}{{ _('My Bets History') }}{% endblock %} {% block content %}

{{ _('My Bets History') }}

{% if bets.items %} {% for bet in bets.items %} {% endfor %}
{{ _('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 %}
{% if bets.pages > 1 %}
{% if bets.has_prev %} {% endif %} {{ bets.page }} / {{ bets.pages }} {% if bets.has_next %} {% endif %}
{% endif %} {% else %}

{{ _("You haven't placed any bets yet.") }}

{{ _('Start Playing') }}
{% endif %}
{% endblock %}