{% extends "base.html" %} {% load static %} {% block title %}Secure Payments Dashboard — ACA Admin{% endblock %} {% block extra_css %} {% endblock %} {% block body %}

Secure Payment Transactions

Monitor all buyer payments held securely

GHS {{ stats.total_held|floatformat:2 }}
GHS {{ stats.total_released|floatformat:2 }}
{{ stats.disputed }}
{{ stats.pending_delivery }}
{% if status_filter %} Clear {% endif %}
{% for tx in transactions %} {% empty %} {% endfor %}
ID Order Vendor Amount Payout Status Created
{{ tx.id|stringformat:"s"|slice:":8" }} {{ tx.order.order_number }} {{ tx.vendor.store_name }} GHS {{ tx.amount }} GHS {{ tx.seller_payout }} {{ tx.get_status_display }} {{ tx.created_at|date:"M d, Y H:i" }} View
No secure payment transactions found.
{% endblock %}