{% extends 'base.html' %} {% load humanize %} {% block title %}Developer Payments — PhinTech Solutions{% endblock %} {% block content %}
| Reference | Date | Type | Description | Amount | Phone | M-Pesa Receipt | Initiated By | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ payment.reference }} |
{{ payment.created_at|date:"d M Y" }} {{ payment.created_at|date:"H:i" }} |
{{ payment.get_payment_type_display }} | {{ payment.description }} | KES {{ payment.amount|floatformat:2|intcomma }} | {{ payment.payer_phone }} |
{% if payment.mpesa_receipt %}
{{ payment.mpesa_receipt }}
{% else %}
—
{% endif %}
|
{{ payment.initiated_by.get_full_name|default:"—" }} | {% if payment.status == 'completed' %} Completed {% elif payment.status == 'processing' %} Processing {% elif payment.status == 'pending' %} Pending {% elif payment.status == 'failed' %} Failed {% elif payment.status == 'cancelled' %} Cancelled {% endif %} | |
| No developer payments found. Make the first payment. | |||||||||