{% extends "base.html" %} {% block title %}Bet Detail - {{ bet.uuid }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Bet UUID

{{ bet.uuid }}

Total Amount

{{ "{:,.2f}".format(bet.total_amount) if bet.total_amount else '0.00' }}

Bet Count

{{ bet.bet_count }}

Match Number

{{ bet.match_number }}

Paid

{% if bet.paid %} Yes {% else %} No {% endif %}

Paid Out

{% if bet.paid_out %} Yes {% else %} No {% endif %}

Bet DateTime
{{ bet.bet_datetime.strftime('%Y-%m-%d %H:%M:%S') if bet.bet_datetime else '' }}
Bet Details
Timezone:
{% if bet_details %}
{% for detail in bet_details %} {% endfor %}
Match ID Match Number Outcome Amount Win Amount Result
{{ detail.match_id }} {{ detail.match_number }} {{ detail.outcome }} {{ "{:,.2f}".format(detail.amount) if detail.amount else '0.00' }} {{ "{:,.2f}".format(detail.win_amount) if detail.win_amount else '0.00' }} {% if detail.result == 'win' %} Win {% elif detail.result == 'lose' %} Lose {% elif detail.result == 'pending' %} Pending {% else %} {{ detail.result }} {% endif %}
{% else %}

No bet details found

This bet has no detailed breakdown.

{% endif %}
{% block extra_js %} {% endblock %} {% endblock %}