{% extends 'base.html' %} {% block title %}Complaints Report{% endblock %} {% block content %}
{% include "reports/partials/page_header.html" with title="Complaints Report" icon="bi-chat-left-text" %} {% include "reports/partials/filters.html" %} {% if summary %} {% include "reports/partials/kpi_cards.html" with data=summary %} {% endif %}
{% for complaint in complaints %}
{{ complaint.tenant.username|default:"Unknown Tenant" }} {{ complaint.status|default:"pending" }}
{{ complaint.category|default:"General" }}
{{ complaint.description|default:"No description provided." }}
{% empty %}

No complaints available.

{% endfor %}
{% endblock %}