{% extends "base.html" %} {% load humanize portal_extras %} {% block title %}Donations{% endblock %} {% block nav_donations %}active{% endblock %} {% block content %}
All online donations received through the website
| Donor | Phone | Amount (UGX) | Status | Reference | Date | Message | ||
|---|---|---|---|---|---|---|---|---|
| {{ donation.name }} | {{ donation.email }} | {{ donation.phone|default:"—" }} | {{ donation.amount|floatformat:0|intcomma }} | {% if donation.status == 'completed' %} Completed {% elif donation.status == 'pending' %} Pending {% else %} Failed {% endif %} | {{ donation.flw_tx_ref|truncatechars:20 }} | {{ donation.created_at|date:"d M Y" }} | {% if donation.message %} {{ donation.message|truncatechars:50 }} {% else %}—{% endif %} | {% if donation.status != 'completed' %} {% endif %} |
No donations found{% if search_query or current_status %} matching your filters{% endif %}.
{% if search_query or current_status %} Clear filters {% endif %}