{% extends "base.html" %} {% load static %} {% block title %}Departments | HR Management{% endblock %} {% block css %} {% endblock %} {% block content %}
| 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. | ||||||