{% extends 'base.html' %} {% load static %} {% block title %}Departments - HR - Optinet Global Links{% endblock %} {% block content %}

Departments

Add Department
{% include 'hr/hr_nav.html' %}
{% if departments %}
{% for department in departments %} {% endfor %}
Name Manager Employees Status Actions
{{ department.name }} {% if department.description %}
{{ department.description|truncatewords:10 }} {% endif %}
{% if department.manager %} {{ department.manager.full_name }} {% else %} No manager assigned {% endif %} {{ department.employee_count }} employees {% if department.is_active %} Active {% else %} Inactive {% endif %}
{% else %}
No departments found

Create your first department to get started.

Add Department
{% endif %}
{% endblock %}