{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{{ department.get_localized_name }} - {% trans "Inquiries" %} - PX360{% endblock %} {% block content %}
{{ department.get_localized_name }} · {{ department.hospital.name }}
| {% trans "Reference" %} | {% trans "Subject" %} | {% trans "Contact" %} | {% trans "Assigned To" %} | {% trans "Status" %} | {% trans "Priority" %} | {% trans "Response SLA" %} | {% trans "Created" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|---|
| {{ i.reference_number }} | {{ i.subject }} | {{ i.contact_name|default:"-" }} | {{ i.assigned_to.get_full_name|default:"-" }} | {{ i.get_status_display }} {% if i.contact_status == 'contacted_no_response' %} {% trans "No Response" %} {% elif i.contact_status == 'contacted' %} {% trans "Contacted" %} {% endif %} | {{ i.get_priority_display }} | {% if i.dept_response_sla_due_at and not i.department_responded_at %} {% elif i.dept_response_is_overdue %} {% trans "Overdue" %} {% elif i.department_responded_at %} ✓ {% else %} - {% endif %} | {{ i.created_at|date:"Y-m-d" }} | {% trans "View" %} {% if can_respond and i.handling_department_id == department.pk and i.status in 'open,in_progress' %} {% trans "Handle" %} {% endif %} |
| {% trans "No inquiries found" %} | ||||||||