{% extends "base.html" %} {% block title %}Match Report - Match {{ match_id }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Match ID

{{ match_report.match_id }}

Match Number

{{ match_report.match_number }}

Total Bets

{{ match_report.total_bets }}

Balance

{{ "{:,.2f}".format(match_report.balance) if match_report.balance else '0.00' }}

Total Payin

{{ "{:,.2f}".format(match_report.total_payin) if match_report.total_payin else '0.00' }}

Total Payout

{{ "{:,.2f}".format(match_report.total_payout) if match_report.total_payout else '0.00' }}

CAP Balance

{{ "{:,.2f}".format(match_report.cap_compensation_balance) if match_report.cap_compensation_balance else '0.00' }}

Match Information
Fixture ID: {{ match_report.fixture_id }}
Match DateTime: {{ match_report.match_datetime.strftime('%Y-%m-%d %H:%M:%S') if match_report.match_datetime else '' }}
Actual Result: {{ match_report.actual_result }}
Extraction Result: {{ match_report.extraction_result }}
CAP Applied: {% if match_report.cap_applied %} {{ match_report.cap_percentage }}% {% else %} No {% endif %}
Accumulated Shortfall: {{ "{:,.2f}".format(match_report.accumulated_shortfall) if match_report.accumulated_shortfall else '0.00' }}
Bets for this Match
Show: per page
Timezone:
{% if bets %}
{% for bet in bets %} {% endfor %}
Bet UUID Bet DateTime Match Number Total Amount Bet Count Paid Paid Out Actions
{{ bet.uuid }} {{ bet.bet_datetime.strftime('%Y-%m-%d %H:%M:%S') if bet.bet_datetime else '' }} {{ bet.match_number }} {{ "{:,.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 %} View Details
{% if pagination and pagination.pages > 1 %}

Showing {{ pagination.per_page * (pagination.page - 1) + 1 }} to {{ min(pagination.per_page * pagination.page, pagination.total) }} of {{ pagination.total }} bets

Page {{ pagination.page }} of {{ pagination.pages }}
{% endif %} {% else %}

No bets found for this match

Try adjusting your filters or wait for clients to sync reports.

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