{% extends 'base.html' %} {% load humanize %} {% block title %}Registration Fee Payment Details{% endblock %} {% block content %}

Payment Receipt

Registration fee payment details

← Back

HAVEN GRAZURI INVESTMENT LIMITED

Registration Fee Payment Receipt

✓ Payment Confirmed

Payment Information

Receipt Number: {{ payment.receipt_number }}
Payment Date: {{ payment.payment_date|date:"M d, Y H:i" }}
Payment Method: {{ payment.get_payment_method_display }}
{% if payment.transaction_reference %}
Transaction Ref: {{ payment.transaction_reference }}
{% endif %}
Processed By: {{ payment.processed_by.get_full_name }}

Customer Information

Name: {{ payment.customer.get_full_name }}
Phone: {{ payment.customer.phone_number|default:"N/A" }}
Email: {{ payment.customer.email|default:"N/A" }}
Customer ID: {{ payment.customer.customer_number|default:payment.customer.id }}

Fee Details

Fee Name

{{ payment.registration_fee.fee_name }}

Product Type

{{ payment.registration_fee.get_product_type_display }}

Standard Amount

KES {{ payment.registration_fee.amount|floatformat:2|intcomma }}

{% if payment.registration_fee.description %}
Description

{{ payment.registration_fee.description }}

{% endif %}
Amount Paid: KES {{ payment.amount_paid|floatformat:2|intcomma }}
{% if payment.amount_paid != payment.registration_fee.amount %}
{% if payment.amount_paid > payment.registration_fee.amount %} â„šī¸ Overpayment of KES {{ payment.amount_paid|sub:payment.registration_fee.amount|floatformat:2|intcomma }} {% else %} âš ī¸ Partial payment - Balance: KES {{ payment.registration_fee.amount|sub:payment.amount_paid|floatformat:2|intcomma }} {% endif %}
{% endif %}
{% if payment.payment_notes %}

Payment Notes

{{ payment.payment_notes }}

{% endif %}

This is a computer-generated receipt. No signature required.

Generated on {{ payment.created_at|date:"M d, Y H:i" }}

{% endblock %}