{% extends "base.html" %} {% load static %} {% block title %}Delete Clinical Note: {{ clinical_note.title }}{% endblock %} {% block css %} {% endblock %} {% block content %}
You are about to permanently delete the clinical note "{{ clinical_note.title }}" for patient {{ clinical_note.patient.get_full_name }}. This action cannot be undone.
Deleting this clinical note will remove it from the patient's medical record and may affect related records, care plans, and other clinical documentation.
{% if clinical_note.status == 'SIGNED' %}| Note ID | {{ clinical_note.note_id }} |
|---|---|
| Title | {{ clinical_note.title }} |
| Patient | {{ clinical_note.patient.get_full_name }} |
| Note Type | {{ clinical_note.get_note_type_display }} |
| Status | {{ clinical_note.get_status_display }} |
| Author | {{ clinical_note.author.get_full_name }} |
| Note Date/Time | {{ clinical_note.note_datetime }} |
| Created | {{ clinical_note.created_at }} |
| Signed Date/Time | {{ clinical_note.signed_datetime }} |
Deleting this clinical note will affect the following:
No problems associated with this clinical note.
{% endif %}No care plans associated with this clinical note.
{% endif %}This note is associated with encounter: {{ clinical_note.related_encounter.encounter_type }} on {{ clinical_note.related_encounter.start_time|date:"M d, Y" }} with provider {{ clinical_note.related_encounter.provider.get_full_name }}.
{% else %}No encounter associated with this clinical note.
{% endif %}This note has {{ clinical_note.addendums.count }} addendum(s):
This note has been amended by {{ clinical_note.amended_by.get_full_name }} on {{ clinical_note.amended_datetime|date:"M d, Y" }}.
{% else %}No addendums or amendments associated with this clinical note.
{% endif %}Instead of deleting this clinical note, consider these alternatives:
If the note is incomplete, you can continue editing it instead of deleting it.
Edit NoteIf the note contains errors, add an amendment to correct the information.
Add AmendmentIf the note was created in error, mark it as an error note instead of deleting it.
Mark as Error