{% extends "base.html" %} {% load static %} {% block title %}Quality Incidents{% endblock %} {% block content %}
| Incident ID | Title | Category | Severity | Status | Reported By | Date Reported | Actions | |
|---|---|---|---|---|---|---|---|---|
|
{% if incident.is_confidential %}
Confidential
{% endif %}
|
{{ incident.title|truncatechars:50 }}
{% if incident.patient %}
Patient: {{ incident.patient.get_full_name }}
{% endif %}
|
{{ incident.get_category_display }}
|
{{ incident.get_severity_display }} |
{{ incident.get_status_display }}
{% if incident.days_open > 30 %}
{{ incident.days_open }} days
{% endif %}
|
{{ incident.reported_by.get_full_name }}
{{ incident.department|default:"Unknown Dept" }}
|
{{ incident.date_reported|date:"M d, Y" }}
{{ incident.date_reported|date:"g:i A" }}
|