{% extends "base.html" %} {% load static %} {% block title %}Delete Clinical Note: {{ clinical_note.title }}{% endblock %} {% block css %} {% endblock %} {% block content %}

Delete Clinical Note Confirm clinical note deletion

Confirm Deletion

Warning: You are about to delete a clinical note

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' %}
Warning: This note has been signed and is part of the official medical record. Deleting signed notes may violate regulatory requirements and documentation standards.
{% endif %}
Note Summary
{% if clinical_note.signed_datetime %} {% endif %}
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 }}
Impact Assessment

Deleting this clinical note will affect the following:

Related Problems
{% if clinical_note.related_problems.all %}
    {% for problem in clinical_note.related_problems.all %}
  • {{ problem.problem_name }} ({{ problem.get_status_display }})
  • {% endfor %}
{% else %}

No problems associated with this clinical note.

{% endif %}
Related Care Plans
{% if clinical_note.related_care_plans.all %}
    {% for care_plan in clinical_note.related_care_plans.all %}
  • {{ care_plan.title }} ({{ care_plan.get_status_display }})
  • {% endfor %}
{% else %}

No care plans associated with this clinical note.

{% endif %}
Related Encounter
{% if clinical_note.related_encounter %}

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 %}
Addendums & Amendments
{% if clinical_note.addendums.all %}

This note has {{ clinical_note.addendums.count }} addendum(s):

    {% for addendum in clinical_note.addendums.all %}
  • Addendum by {{ addendum.author.get_full_name }} on {{ addendum.created_at|date:"M d, Y" }}
  • {% endfor %}
{% elif clinical_note.status == 'AMENDED' %}

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 %}
Alternative Actions

Instead of deleting this clinical note, consider these alternatives:

{% if clinical_note.status == 'DRAFT' %}
Continue Editing

If the note is incomplete, you can continue editing it instead of deleting it.

Edit Note
{% endif %} {% if clinical_note.status == 'SIGNED' %}
Add Amendment

If the note contains errors, add an amendment to correct the information.

Add Amendment
Add Addendum

If additional information is needed, add an addendum to the note.

Add Addendum
{% endif %}
Mark as Error

If the note was created in error, mark it as an error note instead of deleting it.

Mark as Error
{% csrf_token %}
{% if clinical_note.status == 'SIGNED' %}
Please provide a detailed reason for deleting this signed clinical note.
{% endif %}
Cancel
{% endblock %} {% block js %} {% endblock %}