{% extends 'base.html' %} {% block title %}{{ guest.full_name }}{% endblock %} {% block page_title %}Guest Profile{% endblock %} {% block content %}
Guest Info Edit
{{ guest.full_name }}
Registered {{ guest.created_at|date:"d M Y" }}
Phone
{{ guest.phone }}
Email
{{ guest.email|default:'—' }}
ID Type
{{ guest.get_id_type_display }}
ID Number
{{ guest.id_number }}
Address
{{ guest.address|default:'—' }}
Total Stays
{{ total_stays }}
Total Spent
TSh {{ total_spent|floatformat:0 }}
Booking History
{% for bk in bookings %} {% empty %} {% endfor %}
Booking Hotel Room Check-In Check-Out Nights Total Status
BK{{ bk.pk|stringformat:"04d" }} {{ bk.room.hotel.name }} {{ 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.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 yet.
{% endblock %}