{% extends "emails/base_email.html" %} {% block content %}

Payment Received

Thank you for your payment

Payment Confirmation #{{ payment.transaction_reference }}

Status: Completed

Date: {{ payment.updated_at|date:"F j, Y g:i A" }}

Amount: KSh {{ payment.amount|floatformat:2 }}

{% if booking %}

Booking Details

Booking #: {{ booking.booking_number }}

Equipment: {{ booking.equipment.name }}

Rental Period: {{ booking.start_date|date:"M j, Y" }} to {{ booking.end_date|date:"M j, Y" }}

Payment Summary

Total Booking Amount KSh {{ booking.total_amount|floatformat:2 }}
Amount Paid KSh {{ total_paid|floatformat:2 }}
Balance Due KSh {{ balance_due|floatformat:2 }} {% if is_fully_paid %}(Fully Paid){% endif %}
{% endif %}

What's Next?

  • You will receive a reminder before your rental period begins
  • Please bring your ID when picking up the equipment
  • {% if not is_fully_paid %}
  • The remaining balance of KSh {{ balance_due|floatformat:2 }} will be due before equipment pickup
  • {% endif %}
View Booking Details

If you have any questions about your payment, please contact us at:

Email: {{ contact_email }} | Phone: {{ contact_phone }}

© {% now "Y" %} {{ site_name }}. All rights reserved.

{% endblock %}