{% extends 'base.html' %} {% block title %}Repairs Report{% endblock %} {% block content %}
{% for repair in repairs %}
{{ repair.tenant.username|default:"Unknown Tenant" }} {{ repair.status|default:"pending" }}

{{ repair.issue|default:"No description" }}

{% if repair.cost %}

Cost: KES {{ repair.cost }}

{% endif %}
{% empty %}

No repair records available.

{% endfor %}
{% endblock %}