{% 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")}} |
|||||||||||