{% extends "base.html" %} {% load static %} {% block title %}Incident Detail - Quality Management{% endblock %} {% block content %}
This incident is currently open and requires investigation. Please review the details and take appropriate action.
This incident is currently under investigation. Investigation started on {{ object.investigation_started_at|date:"M d, Y H:i" }}.
This incident has been resolved on {{ object.resolved_at|date:"M d, Y H:i" }}. Resolution: {{ object.resolution_summary|truncatechars:100 }}
This incident has been closed on {{ object.closed_at|date:"M d, Y H:i" }}. All corrective actions have been completed.
{{ object.description|linebreaks }}
{% if object.immediate_action_taken %}{{ object.immediate_action_taken|linebreaks }}
{{ object.patient_impact_description|linebreaks }}
{{ object.investigation_findings|linebreaks }}
{{ object.root_cause|linebreaks }}
{{ object.contributing_factors|linebreaks }}
{{ object.resolution_summary|linebreaks }}
{{ object.lessons_learned|linebreaks }}
{{ object.created_at|date:"M d, Y H:i" }}
By {{ object.reported_by.get_full_name }}
{{ object.investigation_started_at|date:"M d, Y H:i" }}
{% if object.investigator %}By {{ object.investigator.get_full_name }}
{% endif %}{{ object.investigation_completed_at|date:"M d, Y H:i" }}
{{ object.resolved_at|date:"M d, Y H:i" }}
{% if object.resolved_by %}By {{ object.resolved_by.get_full_name }}
{% endif %}{{ object.closed_at|date:"M d, Y H:i" }}
{% if object.closed_by %}By {{ object.closed_by.get_full_name }}
{% endif %}