{% extends "base.html" %} {% load static %} {% block title %}Confirm Delete Bed | {{ block.super }}{% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block breadcrumb %}
{% endblock %} {% block page_header %}You are about to permanently delete this bed record. This action cannot be undone.
Ward: {{ bed.ward.name }}
Room Number: {{ bed.room_number }}
Bed Number: {{ bed.bed_number }}
Bed Type: {{ bed.get_bed_type_display }}
Room Type: {{ bed.get_room_type_display }}
Status: {{ bed.get_status_display }}
Isolation Capable: {% if bed.is_isolation_capable %} Yes {% else %} No {% endif %}
{% if bed.current_patient %}Current Patient: {{ bed.current_patient.get_full_name }}
{% endif %}Deleting this bed will have the following impacts:
This bed is currently occupied. Deleting an occupied bed is not recommended.
{% endif %}Instead of deleting this bed, consider:
| Equipment | {{ bed.equipment|default:"None specified" }} |
|---|---|
| Features | {{ bed.features|default:"None specified" }} |
| Notes | {{ bed.notes|default:"None specified" }} |
| Last Cleaned | {{ bed.last_cleaned|date:"M d, Y H:i" }} |
| Cleaned By | {{ bed.cleaned_by.get_full_name }} |
| Last Maintenance | {{ bed.last_maintenance|date:"M d, Y H:i" }} |
| Occupied Since | {{ bed.occupied_since|date:"M d, Y H:i" }} |
Name: {{ bed.current_patient.get_full_name }}
MRN: {{ bed.current_patient.mrn }}
Admission Date: {{ bed.current_admission.admission_datetime|date:"M d, Y H:i" }}
Attending Physician: {{ bed.current_admission.attending_physician.get_full_name }}