📜 Payment History
{% if payments %}
Amount
Paid On
Status
Screenshot
{% for payment in payments %}
₹{{ payment.amount }}
{{ payment.paid_on.strftime('%d-%b-%Y %I:%M %p') }}
{{ payment.status }}
{% if payment.screenshot %}
View
{% else %}
No Screenshot
{% endif %}
{% endfor %}
{% else %}
No payment history found.
{% endif %}
← Back to Dashboard
×