{% extends "base.html" %} {% block title %}Approval inbox · KarmaSakshi Control Center{% endblock %} {% block content %}
Human checkpoint

Approval inbox

Each row is an exact sealed effect awaiting a server-authorized decision.

{{ refunds|length }} pending
{% if refunds %}
{% for refund in refunds %} {% endfor %}
RequestedReferenceBeneficiaryExact amountRisk / policy
{{ refund.created_at.strftime("%Y-%m-%d") }}
{{ refund.created_at.strftime("%H:%M:%S UTC") }}
{{ refund.reference }}
{{ refund.manifest_id[:12] }}
{{ refund.beneficiary }} {{ refund.currency }} {{ "%.2f"|format(refund.amount_minor_units / 100) }} {{ refund.risk_score }} · {{ refund.recommendation }} Review exact effect
{% else %}
No decisions waiting.
New sealed refund effects will appear here.
{% endif %} {% endblock %}