|
This is to inform you that a booking has been made for {{data.check_in_date}} with the following details.
- Booking Reference: {{data.booking_ref_code}}
- Name of booking client: {{data.client}}
- Check in date: {{data.check_in_date}}
- Check out date: {{data.check_out_date}}
- Conservancy entry fees: {{data.num_of_guests}}
{% if data.num_of_guests != 0 %}
{% for guest in guests %}
- {{ guest.guest_category }}: {{ guest.guest_number }}
{% endfor %}
{% endif %}
- Number of vehicles: {{data.num_of_vehicles}}
{% if data.num_of_vehicles != 0 %}
{% for vehicle in vehicles %}
- {{ vehicle.vehicle_category }}: {{ vehicle.vehicle_number }}
{% endfor %}
{% endif %}
{% if activities %}
The following activities have been booked:
{% for activity in activities %}
- {{ activity.inventory_name }}
- Date: {{ activity.date }}
- Number of participants: {{ activity.inventory_guest_count }}
{% endfor %}
{% endif %}
{% if facilities %}
The following facilities have been booked:
{% for facility in facilities %}
- {{ facility.facility_name }}
- Check-in Date: {{ facility.start_date }}
- Check-out Date: {{ facility.end_date }}
- Number of guests: {{ facility.facility_guest_count }}
{% endfor %}
{% endif %}
Thank you from the Ol Pejeta Team!
|