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

New Booking Received

Action required: Review and confirm

Booking #{{ booking.booking_number }}

Customer: {{ booking.customer_email }}

Equipment: {{ equipment.name }}

Total Amount: KSh {{ booking.total_amount|floatformat:2 }}

Rental Period

From: {{ booking.start_date|date:"F j, Y" }}{% if booking.pickup_time %} at {{ booking.pickup_time|time:"g:i A" }}{% endif %}

To: {{ booking.end_date|date:"F j, Y" }}{% if booking.return_time %} at {{ booking.return_time|time:"g:i A" }}{% endif %}

Duration: {{ booking.total_days }} day{{ booking.total_days|pluralize }}

{% if booking.delivery_required %}

Delivery Required

Address: {{ booking.delivery_address }}

Delivery Fee: KSh {{ booking.delivery_fee|floatformat:2 }}

{% endif %}

Customer Information

Name: {{ booking.user.get_full_name|default:"N/A" }}
Email: {{ booking.customer_email }}
Phone: {{ booking.customer_phone }}
Member Since: {{ booking.user.date_joined|date:"F j, Y" }}

Action Required

Please review this booking and update its status in the admin panel:

  1. Verify equipment availability for the requested dates
  2. Contact the customer if any clarifications are needed
  3. Update the booking status to 'Confirmed' once verified
View in Admin All Bookings

This is an automated notification. Please do not reply to this email.

{% endblock %}