{% extends "base.html" %} {% load static %} {% block title %}{% if bed %}Edit Bed{% else %}Add New Bed{% endif %} | {{ block.super }}{% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block breadcrumb %} {% endblock %} {% block page_header %}

{% if bed %}Edit Bed{% else %}Add New Bed{% endif %} Manage bed information

{% endblock %} {% block content %}

{% if bed %}Edit Bed: {{ bed.bed_number }} ({{ bed.ward.name }}){% else %}Add New Bed{% endif %}

{% csrf_token %} {% if form.errors %}
Please correct the following errors:
    {% for field in form %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endfor %} {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.ward }} {% if form.ward.help_text %}
{{ form.ward.help_text }}
{% endif %}
{{ form.room_number }} {% if form.room_number.help_text %}
{{ form.room_number.help_text }}
{% endif %}
{{ form.bed_number }} {% if form.bed_number.help_text %}
{{ form.bed_number.help_text }}
{% endif %}
{{ form.bed_type }} {% if form.bed_type.help_text %}
{{ form.bed_type.help_text }}
{% endif %}

Standard Bed: Regular hospital bed suitable for most patients.

Bariatric Bed: Reinforced bed designed for patients with higher weight requirements.

Pediatric Bed: Specialized bed with safety features for children.

ICU Bed: Advanced bed with monitoring capabilities for critical care.

Labor & Delivery Bed: Specialized bed for obstetric patients.

Stretcher: Mobile bed for temporary patient placement or transport.

{{ form.room_type }} {% if form.room_type.help_text %}
{{ form.room_type.help_text }}
{% endif %}
{{ form.status }} {% if form.status.help_text %}
{{ form.status.help_text }}
{% endif %}
{{ form.is_isolation_capable }}
{{ form.equipment }}
List any permanent equipment attached to this bed (e.g., ventilator, monitors).
{{ form.features }}
Describe any additional features of this bed (e.g., pressure relief mattress, built-in scale).
{{ form.notes }}
Any additional information about this bed.

Help & Guidelines

Bed Information

Each bed must have a unique combination of ward, room number, and bed number.

  • Ward: The ward where this bed is located.
  • Room Number: The room identifier within the ward.
  • Bed Number: The unique identifier for this bed within the room.
Bed Types

Select the appropriate bed type based on patient needs:

  • Standard: Regular hospital bed for most patients
  • Bariatric: Reinforced bed for patients with higher weight requirements
  • Pediatric: Specialized bed with safety features for children
  • ICU: Advanced bed with monitoring capabilities
  • Labor & Delivery: Specialized bed for obstetric patients
  • Stretcher: Mobile bed for temporary placement
Room Types

Room types determine billing and patient placement:

  • Private: Single-occupancy room
  • Semi-Private: Two-bed room
  • Ward: Multi-bed room (3+ beds)
  • Isolation: Room for patients requiring isolation
  • Negative Pressure: Specialized room for infection control
  • VIP: Enhanced amenities room
Status Information

Bed status affects availability for patient assignment:

  • Available: Ready for patient assignment
  • Occupied: Currently assigned to a patient
  • Reserved: Reserved for upcoming admission
  • Cleaning: Being cleaned after discharge
  • Maintenance: Undergoing repairs or maintenance
  • Blocked: Temporarily unavailable for assignment
{% endblock %} {% block js %} {{ block.super }} {% endblock %}