{% extends 'base.html' %} {% load humanize %} {% block title %}M-Pesa Dashboard{% endblock %} {% block content %}

M-Pesa Payment Dashboard

💳 SasaPay & SMS ⚙️ Configuration Test Payment
Recent Transactions
View All
{% if recent_transactions %}
{% for transaction in recent_transactions %} {% endfor %}
Transaction ID Customer Amount Status Time
{{ transaction.trans_id }} {% if transaction.borrower %} {{ transaction.borrower.get_full_name }} {% else %} {{ transaction.get_customer_name|default:"Unknown" }} {% endif %} KES {{ transaction.trans_amount|floatformat:2|intcomma }} {{ transaction.get_status_display }} {{ transaction.created_at|timesince }} ago
{% else %}

No transactions yet.

{% endif %}
Needs Attention
{% if failed_transactions %} {% for transaction in failed_transactions %}
⚠️
{{ transaction.created_at|timesince }} ago
KES {{ transaction.trans_amount|floatformat:2|intcomma }} {% if transaction.borrower %} - {{ transaction.borrower.get_full_name }} {% endif %}
{% endfor %} {% else %}

No failed transactions.

{% endif %}
{% endblock %}