{% extends 'admin/master.html' %} {% load static %} {% block content %}

Hi, welcome back!

Bed Requests

Bed Requests

{% for bed in bed_list %} {% endfor %}
ID Hospital Ward Bed Booking Date Time Slot Patient Name Contact No Booking Reason Insurance info Ambulance Status Notes Created At Action
{{ bed.id }} {% if bed.hospital %} {{ bed.hospital.hospital_name }} {% else %} N/A {% endif %} {{ bed.ward_type }} {{ bed.bed_type }} {{ bed.booking_date }} {{ bed.time_slot }} {{ bed.patient_name }} {{ bed.contact_number }} {{ bed.booking_reason }} {{ bed.insurance_info }} {{ bed.ambulance_required }} {{ bed.get_status_display|capfirst }} {{ bed.notes }} {{ bed.created_at }}
{% endblock content %}