{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}My Hosting Bookings | Hosting Client Portal{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Hosting Client Bookings

My event hosting bookings.

Track your event hosting requests, selected venues, packages, meals, add-ons, payment status, and booking progress in one place.

{% for booking in bookings %}

{{ booking.get_event_type_display }} {% if booking.occasion_title %} — {{ booking.occasion_title }} {% endif %}

{{ booking.venue_name_snapshot|default:booking.venue.venue_name }} {% if booking.host_business_name_snapshot %} · {{ booking.host_business_name_snapshot }} {% endif %}
{{ booking.get_status_display }} {{ booking.get_payment_status_display }}
Event Date {{ booking.preferred_event_date|date:"M d, Y" }}
Start Time {% if booking.preferred_start_time %} {{ booking.preferred_start_time|time:"g:i A" }} {% else %} Not specified {% endif %}
Guests {{ booking.number_of_guests }}
Total Amount ${{ booking.total_amount_usd }}
Selected Package, Meals & Add-ons
{% if booking.package_title_snapshot %}
Package: {{ booking.package_title_snapshot }} (${{ booking.package_amount_snapshot_usd }})
{% endif %} {% if booking.meal_plan_title_snapshot %}
Meal Plan: {{ booking.meal_plan_title_snapshot }} (${{ booking.meal_amount_snapshot_usd }})
{% endif %} {% for add_on in booking.selected_add_ons.all %}
Add-on: {{ add_on.add_on_title_snapshot }} x {{ add_on.quantity }} (${{ add_on.subtotal_snapshot_usd }})
{% empty %} {% if not booking.package_title_snapshot and not booking.meal_plan_title_snapshot %}
No package, meal plan, or add-on snapshot found.
{% endif %} {% endfor %}
{% if booking.occasion_note or booking.special_requests %}
Notes & Requests
{% if booking.occasion_note %}
{{ booking.occasion_note }}
{% endif %} {% if booking.special_requests %}
{{ booking.special_requests }}
{% endif %}
{% endif %}
{% if booking.payment_status == 'due' and booking.payable_item %}
{% csrf_token %}
{% endif %} Dashboard Explore Hosting
{% empty %}

No hosting bookings yet

You have not created any event hosting booking requests yet. Explore available hosting experiences and create your first request.

Explore Hosting Experiences
{% endfor %}
{% endblock %}