{% extends "base.html" %} {% block title %}Reports{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Client Name | Client ID | Matches | Bets | Payin | Payout | Balance | CAP Redistribution | Accumulated Shortfall | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ client.token_name }} | {{ client.client_id }} |
{{ client.total_matches }} | {{ client.total_bets }} | {{ "{:,.2f}".format(client.total_payin) }} | {{ "{:,.2f}".format(client.total_payout) }} | {{ "{:,.2f}".format(client.balance) }} | {{ "{:,.2f}".format(client.cap_balance) }} | {{ "{:,.2f}".format(client.accumulated_shortfall) }} | {% set detail_filters = {'date_range': filters.date_range, 'start_date': filters.start_date, 'end_date': filters.end_date, 'start_time': filters.start_time, 'end_time': filters.end_time, 'per_page': filters.per_page, 'timezone': filters.timezone, 'sort_by': filters.sort_by, 'sort_order': filters.sort_order} %} View Details |
Showing {{ pagination.per_page * (pagination.page - 1) + 1 }} to {{ min(pagination.per_page * pagination.page, pagination.total) }} of {{ pagination.total }} clients
Try adjusting your filters or wait for clients to sync reports.