{% extends "base.html" %} {% block title %}{{ house.house_number }}{% endblock %} {% block page_title %}{{ house.house_number }}{% endblock %} {% block content %}
House Information
{% if house.location_type == 'market' %} Market {% else %} Home {% endif %}
House Number
{{ house.house_number }}
Region
{{ house.region.name }}
District
{{ house.district.name }}
Ward
{{ house.ward.name }}
Village
{{ house.village.name }}
Total Rooms
{{ house.total_rooms }}
Occupied
{{ occupied }}
Vacant
{{ house.total_rooms|add:"-"|add:occupied }}
Owner
{{ house.owner.get_full_name|default:house.owner.username|default:"—" }}
{% if house.description %}
Description
{{ house.description }}
{% endif %}
Total Rent Collected
TSh {{ total_rent|floatformat:0 }}
All time, all rooms
Rooms ({{ rooms|length }})
{% for room in rooms %}
{{ room.room_number }}
{% if room.is_occupied %} Occupied {% else %} Vacant {% endif %}
{% if room.rent_per_month %}
TSh {{ room.rent_per_month|floatformat:0 }}/month
{% else %}
Rent not set
{% endif %} {% if room.current_user_name %}
{{ room.current_user_name }}
{% if room.current_user_phone %}
{{ room.current_user_phone }}
{% endif %} {% endif %} {% if room.season_start_year %}
{{ room.get_season_display }}
{% endif %}
Paid: TSh {{ room.get_total_rent_paid|floatformat:0 }}
{% with last=room.get_last_paid_info %}
{% if last %} Last paid: {{ last }} {% else %} No payments yet {% endif %}
{% endwith %}
{% empty %}

No rooms found for this house.

{% endfor %}
Back to Houses Delete House
{% endblock %}