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

Booking Confirmed!

Your equipment is reserved

Booking #{{ booking.booking_number }}

Status: Confirmed

Equipment: {{ equipment.name }}

Pickup Details

Date: {{ booking.start_date|date:"F j, Y" }}

{% if booking.pickup_time %}

Time: {{ booking.pickup_time|time:"g:i A" }}

{% endif %}

Location: {{ equipment.location|default:"Main Office" }}

Return Details

Date: {{ booking.end_date|date:"F j, Y" }}

{% if booking.return_time %}

Time: {{ booking.return_time|time:"g:i A" }}

{% endif %}

Rental Summary

{% if booking.delivery_required %} {% endif %}
{{ equipment.name }} ({{ booking.total_days }} days) KSh {{ booking.subtotal|floatformat:2 }}
Delivery Fee KSh {{ booking.delivery_fee|floatformat:2 }}
Total Amount KSh {{ booking.total_amount|floatformat:2 }}

A security deposit of KSh {{ booking.security_deposit|floatformat:2 }} will be held and refunded upon safe return of the equipment.

What's Next?

  1. Please arrive at the pickup location 15 minutes before your scheduled time.
  2. Bring a valid government-issued ID for verification.
  3. Inspect the equipment with our staff before leaving the premises.
  4. Contact us immediately if you need to make any changes to your booking.
View Booking Details Visit Our Website

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

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

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

{% endblock %}