{% extends "base.html" %} {% block title %}Reports{% endblock %} {% block content %}
Total Payin

{{ "{:,.2f}".format(totals.total_payin) }}

Total Payout

{{ "{:,.2f}".format(totals.total_payout) }}

Total Balance

{{ "{:,.2f}".format(totals.total_balance) }}

CAP Redistribution Balance

{{ "{:,.2f}".format(totals.cap_balance) }}

Filters
Clear Filters
{% if clients %}
{% for client in clients %} {% endfor %}
Client Name Client ID Number of Matches Number of Bets Payin Payout Balance CAP Redistribution Balance 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) }} View Details
{% if pagination and pagination.pages > 1 %}

Showing {{ pagination.per_page * (pagination.page - 1) + 1 }} to {{ min(pagination.per_page * pagination.page, pagination.total) }} of {{ pagination.total }} clients

{% endif %} {% else %}

No reports found

Try adjusting your filters or wait for clients to sync reports.

{% endif %}
{% endblock %}