{% extends 'base.html' %} {% load static %} {% block title %}Payment Receipt - {{ payment.payment_id }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Payment Receipt

Back to Payment
{% if company_logo %} Company Logo {% endif %}

{{ company_name|default:"OptiNet Global Links" }}

{{ company_address|default:"Nairobi, Kenya" }}
Email: {{ company_email|default:"info@optinet.co.ke" }} | Phone: {{ company_phone|default:"+254 XXX XXX XXX" }}

PAYMENT RECEIPT

Receipt Details:
{% if payment.mpesa_reference %} {% endif %} {% if payment.cash_receipt_number %} {% endif %}
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 Details:
{% if payment.customer.package %} {% endif %}
Customer ID: {{ payment.customer.customer_id }}
Name: {{ payment.customer.full_name }}
Email: {{ payment.customer.email }}
Phone: {{ payment.customer.phone }}
Package: {{ payment.customer.package.name }}
Payment Information:
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 }}
{% if payment.notes %}
Notes:

{{ payment.notes }}

{% endif %}

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!

{% endblock %}