{% extends "base.html" %} {% block title %}Occurrence Reports{% endblock %} {% block page_title %}Occurrence Reports{% endblock %} {% block content %}

{{ total }} report{{ '' if total == 1 else 's' }}

Reporter identity remains masked when anonymous unless your role permits disclosure.

{% if incidents %}
{% for incident in incidents %}{% endfor %}
ReferenceDate / LocationBranch / DepartmentClassificationRiskStatus
{{ incident.reference_no }}{{ incident.incident_date }}
{{ incident.location }}
{{ incident.branch.code }}
{{ incident.department.name }}
{{ incident.classification_category }}
{{ incident.report_type }}
{% if incident.risk_level %}{{ incident.risk_level }}{% else %}Pending{% endif %}{{ incident.status_label }}View
{% else %}
No matching reports

Adjust the filters or create a new confidential OVR.

{% endif %}
{% endblock %}