{% extends "base.html" %} {% block title %}Reports{% endblock %} {% block content %}
| Client Name | Client ID | Total Payin | Total Payout | Balance | Total Bets | Total Matches | CAP Redistribution Balance | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ client.token_name }} | {{ client.client_id }} |
{{ "{:,.2f}".format(client.total_payin) }} | {{ "{:,.2f}".format(client.total_payout) }} | {{ "{:,.2f}".format(client.balance) }} | {{ client.total_bets }} | {{ client.total_matches }} | {{ "{:,.2f}".format(client.cap_balance) }} | Details |
Showing {{ pagination.per_page * (pagination.page - 1) + 1 }} to {{ min(pagination.per_page * pagination.page, pagination.total) }} of {{ pagination.total }} clients
{% endif %} {% else %}Try adjusting your filters or wait for clients to sync reports.