{% extends 'base.html' %} {% block title %}{{ hotel.name }}{% endblock %} {% block page_title %}{{ hotel.name }}{% endblock %} {% block content %}
{{ hotel.registration_number }}| Room No. | Type | Price/Night | Capacity | Status | Active Booking | |
|---|---|---|---|---|---|---|
| {{ room.room_number }} | {{ room.get_room_type_display }} | TSh {{ room.price_per_night|floatformat:0 }} | {{ room.capacity }} | {% if room.status == 'available' %}Available {% elif room.status == 'occupied' %}Occupied {% else %}Maintenance{% endif %} | {% with bk=room.get_active_booking %} {% if bk %} BK{{ bk.pk|stringformat:"04d" }} — {{ bk.guest.full_name }} {% else %}—{% endif %} {% endwith %} | |
| No rooms added yet. Add the first room. | ||||||