{% extends "base.html" %} {% block title %}Client Report - {{ token_name }}{% endblock %} {% block content %}

Client Report Details

Back to Reports
Summary
Total Payin

{{ "{:,.2f}".format(totals.total_payin) }}

Total Payout

{{ "{:,.2f}".format(totals.total_payout) }}

Balance

{{ "{:,.2f}".format(totals.total_balance) }}

CAP Redistribution Balance

{{ "{:,.2f}".format(totals.cap_balance) }}

Total Bets

{{ totals.total_bets }}

Total Matches

{{ totals.total_matches }}

Client ID

{{ client_id }}

Token Name

{{ token_name }}

{% if bets %}
{% for bet in bets %} {% endfor %}
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
{% 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' }} {{ detail.result }}
{% else %}

No bets found

{% endif %}
{% if stats %}
{% for stat in stats %} {% endfor %}
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
Under Bets: {{ stat.under_bets }}
Under Amount: {{ "{:,.2f}".format(stat.under_amount) if stat.under_amount else '0.00' }}
Over Bets: {{ stat.over_bets }}
Over Amount: {{ "{:,.2f}".format(stat.over_amount) if stat.over_amount else '0.00' }}
Result Breakdown
{% if stat.result_breakdown %} {% for outcome, data in stat.result_breakdown.items() %} {% endfor %}
Outcome Bets Amount Coefficient
{{ outcome }} {{ data.bets }} {{ "{:,.2f}".format(data.amount) if data.amount else '0.00' }} {{ data.coefficient }}
{% else %}

No breakdown data available

{% endif %}
{% else %}

No extraction stats found

{% endif %}
{% endblock %}