{% extends "base.html" %} {% block title %}Reports{% endblock %} {% block content %}
| Sync ID | Client ID | Sync Timestamp | Date Range | Total Payin | Total Payout | Net Profit | Total Bets | Total Matches | Actions |
|---|---|---|---|---|---|---|---|---|---|
{{ report.sync_id }} |
{{ report.client_id }} | {{ report.sync_timestamp.strftime('%Y-%m-%d %H:%M:%S') if report.sync_timestamp else '' }} | {{ report.date_range }} | {{ "{:,.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.net_profit) if report.net_profit else '0.00' }} | {{ report.total_bets }} | {{ report.total_matches }} | View |
Showing {{ pagination.per_page * (pagination.page - 1) + 1 }} to {{ min(pagination.per_page * pagination.page, pagination.total) }} of {{ pagination.total }} reports
{% endif %} {% else %}Try adjusting your filters or wait for clients to sync reports.