{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Complaints Console - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Complaints Console

Manage and track patient complaints with SLA monitoring

{% if user.is_px_admin or user.is_hospital_admin %} New Complaint {% endif %}
Total Complaints

{{ stats.total }}

Open

{{ stats.open }}

In Progress

{{ stats.in_progress }}

Overdue

{{ stats.overdue }}

Filters
Clear
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} complaints
{% for complaint in complaints %} {% empty %} {% endfor %}
ID Patient Title Category Status Severity Hospital Assigned To Due Date Created Actions
#{{ complaint.id|slice:":8" }} {{ complaint.patient.get_full_name }}
MRN: {{ complaint.patient.mrn }}
{{ complaint.title|truncatewords:8 }} {% if complaint.is_overdue %} OVERDUE {% endif %}
{{ complaint.get_category_display }} {{ complaint.get_status_display }} {{ complaint.get_severity_display }} {{ complaint.hospital.name_en|truncatewords:3 }} {% if complaint.assigned_to %} {{ complaint.assigned_to.get_full_name }} {% else %} Unassigned {% endif %} {{ complaint.due_at|date:"M d, Y H:i" }} {{ complaint.created_at|date:"M d, Y" }}

No complaints found

{% if page_obj.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}