{% extends 'admin/base.html' %} {% block page_title %}Transactions{% endblock %} {% block admin_content %}
All Deposits Withdrawals Bets Wins
Showing: {{ transactions.total }} transactions
{% for tx in transactions.items %} {% else %} {% endfor %}
ID User Type Amount Balance After Method Reference Description Status Time Actions
#{{ tx.id }} {{ tx.user.username }} {{ tx.type|capitalize }} {{ "{:,.0f}".format(tx.amount) }} XAF {{ "{:,.0f}".format(tx.balance_after) }} XAF {{ tx.payment_method or '-' }} {{ tx.payment_reference or '-' }} {{ tx.description or '-' }} {{ tx.status }} {{ tx.created_at.strftime('%Y-%m-%d %H:%M') }} {% if tx.status == 'pending' %}
{% else %} - {% endif %}
No transactions found
{% if transactions.pages > 1 %} {% endif %}
{% endblock %}