{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Booking Requests | Host in Sri Lanka{% endblock %} {% block content %}
Hosting Partner Bookings

Booking Requests

View guest and local-client booking orders connected to your venues, packages, meal plans, and add-on services.

Total {{ total_bookings }}
Due / Unpaid {{ due_count }}
Paid {{ paid_count }}
Completed {{ completed_count }}
Host Net USD {{ total_host_net|floatformat:2 }}
{% if bookings %} {% for booking in bookings %}

{{ booking.get_event_type_display }} — {{ booking.venue_name_snapshot }}

{{ booking.preferred_event_date }} {{ booking.number_of_guests }} guests {{ booking.get_payment_status_display }} {{ booking.get_status_display }}

Total: USD {{ booking.total_amount_usd|floatformat:2 }} · Host Net: USD {{ booking.host_net_amount_usd|floatformat:2 }}

View Details
{% endfor %} {% else %}

No booking requests yet

Guest and local-client bookings for your venues will appear here.

{% endif %}
{% endblock %}