{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}PX Action Center - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Track and manage patient experience improvement actions
| {% trans "ID" %} | {% trans "Title" %} | {% trans "Source" %} | {% trans "Category" %} | {% trans "Status" %} | {% trans "Severity" %} | {% trans "Hospital" %} | {% trans "Assigned To" %} | {% trans "Due Date" %} | {% trans "Created" %} | {% trans "Actions" %} | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| #{{ action.id|slice:":8" }} |
{{ action.title|truncatewords:8 }}
{% if action.is_overdue %}
OVERDUE
{% endif %}
{% if action.escalation_level > 0 %}
L{{ action.escalation_level }}
{% endif %}
|
{{ action.get_source_type_display }} | {{ action.get_category_display }} | {{ action.get_status_display }} | {{ action.get_severity_display }} | {{ action.hospital.name_en|truncatewords:3 }} | {% if action.assigned_to %} {{ action.assigned_to.get_full_name }} {% else %} Unassigned {% endif %} | {{ action.due_at|date:"M d, Y H:i" }} | {{ action.created_at|date:"M d, Y" }} | ||
|
No actions found |
|||||||||||