{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Review Booking | Host in Sri Lanka{% endblock %} {% block content %}
Review Local Client Booking

Review your booking before payment

Please check your selected venue, event details, package, meal plan, add-on services, and total amount. After confirmation, you can complete payment from your Hosting Client Payment Center.

Booking Details

Your selected event and venue information.

Client {% if hosting_client_profile %} {{ hosting_client_profile.full_name }} {% elif booking.hosting_client_profile %} {{ booking.hosting_client_profile.full_name }} {% elif booking.booked_by_user %} {{ booking.booked_by_user.get_username }} {% else %} Local Client {% endif %}
Client Type {{ booking.get_client_type_display }}
Venue {{ booking.venue_name_snapshot }}
Host {{ booking.host_business_name_snapshot|default:"Hosting Partner" }}
Event Type {{ booking.get_event_type_display }}
Event Date {{ booking.preferred_event_date }}
Start Time {{ booking.preferred_start_time|default:"Flexible / Not specified" }}
Guests {{ booking.number_of_guests }}
{% if booking.expected_duration_hours %}
Duration {{ booking.expected_duration_hours }} hours
{% endif %}
Booking Status {{ booking.get_status_display }}
Payment Status {{ booking.get_payment_status_display }}

Selected Items

Package, meal plan, and add-on services included in this booking.

Event Package {% if booking.selected_package %} {{ booking.package_title_snapshot }} — USD {{ booking.package_amount_snapshot_usd|floatformat:2 }} {% else %} Not selected {% endif %}
Meal Plan {% if booking.selected_meal_plan %} {{ booking.meal_plan_title_snapshot }} — USD {{ booking.meal_amount_snapshot_usd|floatformat:2 }} {% else %} Not selected {% endif %}
Add-on Services USD {{ booking.add_on_amount_snapshot_usd|floatformat:2 }}
{% if selected_add_ons %}
{% for item in selected_add_ons %}
{{ item.add_on_title_snapshot }} {{ item.quantity }} × USD {{ item.unit_price_snapshot_usd|floatformat:2 }} = USD {{ item.subtotal_snapshot_usd|floatformat:2 }}
{% endfor %}
{% endif %}
{% if booking.occasion_title or booking.occasion_note or booking.special_requests %}

Occasion Notes

Your personal notes and special requests.

{% if booking.occasion_title %}
Occasion Title {{ booking.occasion_title }}
{% endif %} {% if booking.occasion_note %}
Occasion Note {{ booking.occasion_note }}
{% endif %} {% if booking.special_requests %}
Special Requests {{ booking.special_requests }}
{% endif %}
{% endif %}

Payment Summary

This amount will appear in your Hosting Client Payment Center.

Total Booking Amount USD {{ booking.total_amount_usd|floatformat:2 }}
Package USD {{ booking.package_amount_snapshot_usd|floatformat:2 }}
Meal USD {{ booking.meal_amount_snapshot_usd|floatformat:2 }}
Add-ons USD {{ booking.add_on_amount_snapshot_usd|floatformat:2 }}
{% if booking.payment_reference_code %}
Reference {{ booking.payment_reference_code }}
{% endif %}
{% csrf_token %}
{% if booking.payment_status == 'paid' %} Go to Payment Center {% else %} {% endif %} {% if booking.payment_status == 'paid' %}
This booking has already been paid. Editing is disabled to protect the confirmed event details.
{% else %} Edit Booking {% endif %} Back to Venue Client Dashboard
{% endblock %}