{% extends 'base.html' %} {% load static %} {% block title %}Payment Receipt - {{ payment.payment_id }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ company_address|default:"Nairobi, Kenya" }}
Email: {{ company_email|default:"info@optinet.co.ke" }} | Phone: {{ company_phone|default:"+254 XXX XXX XXX" }}
Receipt No: | {{ payment.payment_id }} |
Date: | {{ payment.created_at|date:"F d, Y" }} |
Time: | {{ payment.created_at|date:"H:i" }} |
Payment Method: | {{ payment.get_payment_method_display }} |
M-Pesa Ref: | {{ payment.mpesa_reference }} |
Cash Receipt: | {{ payment.cash_receipt_number }} |
Customer ID: | {{ payment.customer.customer_id }} |
Name: | {{ payment.customer.full_name }} |
Email: | {{ payment.customer.email }} |
Phone: | {{ payment.customer.phone }} |
Package: | {{ payment.customer.package.name }} |
Description | Amount (KES) |
---|---|
{% if payment.invoice %} Payment for Invoice {{ payment.invoice.invoice_number }} {% if payment.invoice.description %} - {{ payment.invoice.description }} {% endif %} {% else %} General Payment {% if payment.notes %} - {{ payment.notes }} {% endif %} {% endif %} | {{ payment.amount }} |
Total Amount Paid: | KES {{ payment.amount }} |
{{ payment.notes }}
This is a computer-generated receipt.
For any queries, please contact our support team.
Generated on: {{ "now"|date:"F d, Y H:i" }}
Thank you for your business!