{% extends "alumni/base.html" %} {% block title %}Donation Status | AMS{% endblock %} {% block content %}
{% if donation.status == "SUCCESS" %}

Donation Successful!

Thank you, {{ donation.user.get_full_name }}, for your generous donation.

  • Reference: {{ donation.reference }}
  • Amount: GHS {{ donation.amount }}
  • Transaction ID: {{ donation.transaction_id }}
  • Payment Channel: {{ donation.payment_channel }}
  • Date: {{ donation.created_at|date:"F j, Y, g:i A" }}
Back to Dashboard
{% elif donation.status == "FAILED" %}

Donation Failed

Unfortunately, your donation could not be processed. Please try again.

Retry Donation
{% else %}

Pending Payment

Your donation is pending. Please complete the payment.

Complete Donation
{% endif %}
{% endblock %}