{% extends 'admin/base.html' %} {% block page_title %}Transactions{% endblock %} {% block admin_content %}
| 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 | ||||||||||