{% extends "base.html" %} {% block title %}{{ 'Edit Draft' if incident.id else 'New OVR' }}{% endblock %} {% block page_title %}Confidential Occurrence Reporting{% endblock %} {% block content %}
Confidential, non-punitive reporting. Completing this report is not an admission of liability. Attend to urgent care first, notify the appropriate clinician, and preserve any involved equipment for examination.
1

Incident Setting

Where and when the occurrence or variance happened

2

Person Involved

Use a separate report for each person when multiple individuals are involved

{% for item in person_types %}{% endfor %}
3

Classification of Occurrence / Variance

Select the main classification and every applicable item

{% set selected_items = request.form.getlist('classification_items') if request.method == 'POST' else incident.classification_items %} {% for category, items in classifications.items() %}{% endfor %}
4

What Is Being Reported?

Describe outcome, injury, preliminary harm, and medication-error category where applicable

{% for item in report_types %}{% endfor %}
5

Known Facts and Immediate Response

Do not speculate, assign blame, or include unrelated information

Your identity remains securely recorded so authorized QPS personnel can request necessary information, but it is masked from users without protected-identity permission.
{% endblock %}