{% extends "base.html" %} {% load static %} {% block title %}Departments | HR Management{% endblock %} {% block css %} {% endblock %} {% block content %}

Department Management view and manage hospital departments

Departments

{% for department in departments %} {% empty %} {% endfor %}
Department Name Code Type Head Employees Status Actions
{{ department.name }} {% if department.parent_department %} {{ department.parent_department.name }} {% endif %} {{ department.department_code }} {{ department.get_department_type_display }} {% if department.department_head %} {{ department.department_head.get_full_name }} {% else %} Not assigned {% endif %} {{ department.employee_count }} {% if department.is_active %} Active {% else %} Inactive {% endif %}
No departments found.
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}