{% extends "base.html" %} {% block title %}Report Details - {{ report.sync_id }}{% endblock %} {% block content %}
{{ report.sync_id }}
{{ report.client_id }}
{{ report.sync_timestamp.strftime('%Y-%m-%d %H:%M:%S') if report.sync_timestamp else '' }}
{{ report.date_range }}
{{ report.start_date.strftime('%Y-%m-%d') if report.start_date else '' }}
{{ report.end_date.strftime('%Y-%m-%d') if report.end_date else '' }}
{{ report.total_bets }}
{{ report.total_matches }}
| 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 %} |
|||||||||||||||||||||||