{% extends "base.html" %} {% load static %} {% block title %}Delete Ward - {{ ward.name }} - {{ block.super }}{% endblock %} {% block content %}

Delete Ward

Confirm Ward Deletion
Ward Details
Ward ID:
{{ ward.ward_id }}
Name:
{{ ward.name }}
Type:
{{ ward.get_ward_type_display }}
Specialty:
{{ ward.get_specialty_display }}
Total Beds:
{{ ward.total_beds }}
Status:
{% if ward.is_active %}Active{% else %}Inactive{% endif %}
Deletion Impact Assessment
Will be permanently deleted:
  • Beds {{ ward.beds.count }}
  • Current Admissions {{ current_admissions.count }}
  • Historical Admissions {{ historical_admissions.count }}
  • Transfer Records {{ transfer_records.count }}
Will be preserved:
  • Patient Records Preserved
  • Medical Records Preserved
  • Billing Records Preserved
  • Staff Assignments Reassigned
{% if current_admissions.count > 0 %}
Current Patients
{% for admission in current_admissions %} {% endfor %}
Bed Patient Admission Date Action Required
{{ admission.bed.bed_number }} {{ admission.patient.get_full_name }} {{ admission.admission_date|date:"M d, Y" }} Transfer
{% endif %} {% if current_admissions.count == 0 %}
Data Handling Options
Confirmation Required
{% endif %}
{% if current_admissions.count == 0 %}
{% csrf_token %}
{% else %} {% endif %}
{% endblock %}