{% extends "base/base.html" %} {% load static %} {% load humanize %} {% block title %}Payment Successful - {{ block.super }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Payment Successful!

Thank you for your payment. Your booking is now confirmed and we've sent you a confirmation email.

Payment Receipt
Transaction ID

{{ payment.transaction_reference|default:"N/A" }}

Date & Time

{{ payment.timestamp|date:"F j, Y H:i" }}

Payment Method

M-Pesa

Amount Paid

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

Status
Completed

Booking Summary
{% if booking.delivery_required %} {% endif %} {% if not booking.is_fully_paid %} {% endif %}
Item Amount
{{ booking.equipment.name }} ({{ booking.get_duration_display }}) KSh {{ booking.total_amount|floatformat:2|intcomma }}
Delivery Fee ({{ booking.delivery_location }}) KSh {{ booking.delivery_fee|floatformat:2|intcomma }}
Total Paid KSh {{ payment.amount|floatformat:2|intcomma }}
Balance Due KSh {{ booking.balance_due|floatformat:2|intcomma }}
What's Next?
Check Your Email

We've sent a confirmation email with all the details.

Prepare for Pickup

Bring your ID when picking up the equipment.

Need Help?

Contact our support team for any questions.

Have questions about your booking?
Contact Support View FAQs
{% endblock %} {% block extra_js %} {% endblock %}
Payment Details
Transaction ID:
{{ payment.transaction_reference }}
Amount Paid:
KES {{ payment.amount|floatformat:2 }}
Date:
{{ payment.created_at|date:"M j, Y H:i" }}
Status:
Completed
View Booking View Invoice

A confirmation has been sent to your email address. If you have any questions, please contact our support team.

{% endblock %}