{% extends "base.html" %} {% block title %}Client Report - {{ token_name }}{% endblock %} {% block content %}
{{ client_id }}
{{ token_name }}
{{ totals.total_matches }}
{{ totals.total_bets }}
| Match ID | Match Number | Fixture ID | Match DateTime | Total Bets | Winning | Losing | Pending | Total Payin | Total Payout | Balance | Actual Result | Extraction Result | CAP Applied | CAP Balance |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ report.match_id }} | {{ report.match_number }} | {{ report.fixture_id }} |
{{ report.match_datetime.strftime('%Y-%m-%d %H:%M:%S') if report.match_datetime else '' }} | {{ report.total_bets }} | {{ report.winning_bets }} | {{ report.losing_bets }} | {{ report.pending_bets }} | {{ "{:,.2f}".format(report.total_payin) if report.total_payin else '0.00' }} | {{ "{:,.2f}".format(report.total_payout) if report.total_payout else '0.00' }} | {{ "{:,.2f}".format(report.balance) if report.balance else '0.00' }} | {{ report.actual_result }} | {{ report.extraction_result }} | {% if report.cap_applied %} {{ report.cap_percentage }}% {% else %} {% endif %} | {{ "{:,.2f}".format(report.cap_compensation_balance) if report.cap_compensation_balance else '0.00' }} |
Try adjusting your filters or wait for clients to sync reports.