{% extends "base.html" %} {% load static %} {% block title %}Confirm Delete Admission | {{ block.super }}{% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block breadcrumb %} {% endblock %} {% block page_header %}

Confirm Admission Deletion Review before proceeding

{% endblock %} {% block content %}

Delete Admission Record

Warning!

You are about to permanently delete this admission record. This action cannot be undone.

Patient Information

Name: {{ admission.patient.get_full_name }}

MRN: {{ admission.patient.mrn }}

Date of Birth: {{ admission.patient.date_of_birth|date:"M d, Y" }}

Admission Date: {{ admission.admission_datetime|date:"M d, Y H:i" }}

Current Ward: {{ admission.current_ward.name|default:"Not assigned" }}

Current Bed: {{ admission.current_bed.bed_number|default:"Not assigned" }}

Impact Assessment

Deleting this admission will have the following impacts:

    {% if admission.current_bed %}
  • The assigned bed ({{ admission.current_bed.bed_number }} in {{ admission.current_ward.name }}) will be marked as available
  • {% endif %}
  • All transfers associated with this admission will be deleted
  • All surgery schedules associated with this admission will be deleted
  • {% if admission.discharge_summary %}
  • The discharge summary will be deleted
  • {% endif %}
  • All clinical notes referencing this admission will lose their context
  • Billing records associated with this admission will be orphaned

This action may violate healthcare record retention policies. Ensure you have proper authorization.

Alternative Actions

Instead of deleting this admission, consider:

  • Updating the admission status to "Cancelled" if it was created in error
  • Discharging the patient if they are no longer in the facility
  • Transferring the patient to another ward if needed
  • Adding a note to the admission record explaining any issues
{% csrf_token %}
This reason will be logged in the audit trail.

Admission Details

Admission ID {{ admission.admission_id }}
Status {{ admission.get_status_display }}
Admission Type {{ admission.get_admission_type_display }}
Admission Source {{ admission.get_admission_source_display }}
Priority {{ admission.get_priority_display }}
Admitting Physician {{ admission.admitting_physician.get_full_name }}
Attending Physician {{ admission.attending_physician.get_full_name }}
Chief Complaint {{ admission.chief_complaint }}
Admitting Diagnosis {{ admission.admitting_diagnosis }}
Est. Length of Stay {{ admission.estimated_length_of_stay }} days
Insurance Verified {% if admission.insurance_verified %} Yes {% else %} No {% endif %}
Authorization # {{ admission.authorization_number|default:"N/A" }}
{% endblock %} {% block js %} {{ block.super }} {% endblock %}