{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Quality & Patient Safety Dashboard{% endblock %} {% block content %}
Visible Reports{{ counts.all }}
Open Cycle{{ counts.open }}
High / Extreme{{ counts.high }}
Closed{{ counts.closed }}

Recent Occurrence Reports

Latest activity within your authorized scope

View all
{% if incidents %}
{% for incident in incidents %}{% endfor %}
ReferenceIncidentRiskStatus
{{ incident.reference_no }}{{ incident.incident_date }}
{{ incident.department.name }}
{% if incident.risk_level %}{{ incident.risk_level }}{% else %}Pending{% endif %}{{ incident.status_label }}Open
{% else %}
No occurrence reports yet

Your authorized reports will appear here.

{% endif %}

Overdue Investigations

Policy deadline attention

{% if overdue %}{% for incident in overdue %}
{{ incident.reference_no }}

{{ incident.department.name }} ยท {{ incident.status_label }}

Due {{ incident.investigation_due_at.strftime('%Y-%m-%d') }}{{ incident.risk_level }}
{% endfor %} {% else %}
No overdue investigations

Open reports are currently within their policy targets.

{% endif %}
{% endblock %}