{% extends "base.html" %} {% block title %}Client Report - {{ token_name }}{% endblock %} {% block content %}
{{ totals.total_bets }}
{{ totals.total_matches }}
{{ client_id }}
{{ token_name }}
| Bet UUID | Fixture ID | Bet DateTime | Total Amount | Bet Count | Paid | Paid Out | Actions | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ bet.uuid }} |
{{ bet.fixture_id }} | {{ bet.bet_datetime.strftime('%Y-%m-%d %H:%M:%S') if bet.bet_datetime else '' }} | {{ "{:,.2f}".format(bet.total_amount) if bet.total_amount else '0.00' }} | {{ bet.bet_count }} | {% if bet.paid %} {% else %} {% endif %} | {% if bet.paid_out %} {% else %} {% endif %} | |||||||||||||
Bet Details
|
|||||||||||||||||||
| Match ID | Fixture ID | Match DateTime | Total Bets | Total Collected | Total Redistributed | Actual Result | Extraction Result | CAP Applied | Actions | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ stat.match_id }} | {{ stat.fixture_id }} | {{ stat.match_datetime.strftime('%Y-%m-%d %H:%M:%S') if stat.match_datetime else '' }} | {{ stat.total_bets }} | {{ "{:,.2f}".format(stat.total_amount_collected) if stat.total_amount_collected else '0.00' }} | {{ "{:,.2f}".format(stat.total_redistributed) if stat.total_redistributed else '0.00' }} | {{ stat.actual_result }} | {{ stat.extraction_result }} | {% if stat.cap_applied %} {{ stat.cap_percentage }}% {% else %} {% endif %} | |||||||||||||||||
Extraction Details
Result Breakdown{% if stat.result_breakdown %}
No breakdown data available {% endif %} |
|||||||||||||||||||||||||