{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Ward{% else %}Add Ward{% endif %} - {{ block.super }}{% endblock %} {% block content %}

{% if object %} Edit Ward {% else %} Add Ward {% endif %}

{% csrf_token %}
Basic Information
{{ form.ward_id }} {% if form.ward_id.errors %}
{{ form.ward_id.errors.0 }}
{% endif %}
Unique identifier for the ward
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.ward_type }} {% if form.ward_type.errors %}
{{ form.ward_type.errors.0 }}
{% endif %}
{{ form.specialty }} {% if form.specialty.errors %}
{{ form.specialty.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
Brief description of the ward's purpose and services
Capacity Configuration
{{ form.total_beds }} {% if form.total_beds.errors %}
{{ form.total_beds.errors.0 }}
{% endif %}
{{ form.private_rooms }} {% if form.private_rooms.errors %}
{{ form.private_rooms.errors.0 }}
{% endif %}
{{ form.semi_private_rooms }} {% if form.semi_private_rooms.errors %}
{{ form.semi_private_rooms.errors.0 }}
{% endif %}
{{ form.shared_rooms }} {% if form.shared_rooms.errors %}
{{ form.shared_rooms.errors.0 }}
{% endif %}
Location and Management
{{ form.building }} {% if form.building.errors %}
{{ form.building.errors.0 }}
{% endif %}
{{ form.floor }} {% if form.floor.errors %}
{{ form.floor.errors.0 }}
{% endif %}
{{ form.wing }} {% if form.wing.errors %}
{{ form.wing.errors.0 }}
{% endif %}
{{ form.nurse_manager }} {% if form.nurse_manager.errors %}
{{ form.nurse_manager.errors.0 }}
{% endif %}
{{ form.phone_extension }} {% if form.phone_extension.errors %}
{{ form.phone_extension.errors.0 }}
{% endif %}
Features and Equipment
Ward Features
Additional Equipment
Actions
Cancel
Ward Type Guide

  • General Medical: General medical patients
  • Surgical: Post-operative patients
  • Emergency: Emergency department patients

  • ICU: Intensive care patients
  • CCU: Cardiac care patients
  • NICU: Neonatal intensive care
  • Maternity: Obstetric patients
Capacity Calculator
Private 0 Semi-Private 0 Shared 0
Total Beds: 0
{% endblock %}