{% extends "base.html" %} {% block title %}Match Report - Match {{ match_id }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ match_report.fixture_id }}
| 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 |
Showing {{ pagination.per_page * (pagination.page - 1) + 1 }} to {{ min(pagination.per_page * pagination.page, pagination.total) }} of {{ pagination.total }} bets
Try adjusting your filters or wait for clients to sync reports.