{% extends 'base.html' %} {% block title %}{{ hotel.name }}{% endblock %} {% block page_title %}{{ hotel.name }}{% endblock %} {% block content %}
Hotel Details
Registration No.
{{ hotel.registration_number }}
Owner
{{ hotel.owner.get_full_name|default:hotel.owner.username|default:'—' }}
Phone
{{ hotel.phone }}
Email
{{ hotel.email|default:'—' }}
Location
{{ hotel.district.name }}, {{ hotel.region.name }}
Address
{{ hotel.address|default:'—' }}
Status
{% if hotel.is_active %}Active {% else %}Inactive{% endif %}
Registered by
{{ hotel.created_by.username|default:'—' }} · {{ hotel.created_at|date:"d M Y" }}
Available
{{ available_count }}
Occupied
{{ occupied_count }}
Total Revenue
TSh {{ total_revenue|floatformat:0 }}
Rooms ({{ total_rooms }})
{% for room in rooms %} {% empty %} {% endfor %}
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.
{% endblock %} {% block scripts %} {% endblock %}