{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Complaints Console - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Manage and track patient complaints with SLA monitoring
| {% trans "ID" %} | {% trans "Patient" %} | {% trans "Title" %} | {% trans "Category" %} | {% trans "Status" %} | {% trans "Severity" %} | {% trans "Hospital" %} | {% trans "Assigned To" %} | {% trans "Due Date" %} | {% trans "Created" %} | {% trans "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 |
|||||||||||