{% extends 'base.html' %} {% block title %}Bookings{% endblock %} {% block page_title %}Bookings{% endblock %} {% block content %}
Manage all hotel bookings & reservations
Reserved
{{ reserved_count }}
Checked In
{{ checkedin_count }}
Due Checkout Today
{{ today_checkouts }}
Filter by Status
All {% for val, label in status_choices %} · {{ label }} {% endfor %}
Bookings{% if status_filter %} — {{ status_filter|title }}{% endif %}
{% for bk in bookings %} {% empty %} {% endfor %}
Booking Guest Hotel / Room Check-In Check-Out Nights Amount Payment Status
BK{{ bk.pk|stringformat:"04d" }} {{ bk.guest.full_name }} {{ bk.room.hotel.name }}
Room {{ bk.room.room_number }}
{{ bk.check_in_date|date:"d M Y" }} {{ bk.check_out_date|date:"d M Y" }} {{ bk.number_of_nights }} TSh {{ bk.total_amount|floatformat:0 }} {% if bk.payment_status == 'paid' %}Paid {% elif bk.payment_status == 'partial' %}Partial {% else %}Pending{% endif %} {% if bk.booking_status == 'reserved' %}Reserved {% elif bk.booking_status == 'checked_in' %}Checked In {% elif bk.booking_status == 'checked_out' %}Checked Out {% else %}Cancelled{% endif %}
No bookings found.
{% endblock %} {% block scripts %} {% if show_booking_modal %} {% endif %} {% endblock %}