{% extends "base.html" %}{% block title %}Departments{% endblock %}{% block page_title %}Department Management{% endblock %} {% block content %}

Add Department

Configured Departments

{% for department in departments %}{% endfor %}
BranchCodeDepartmentStatus
{{ department.branch.code }}{{ department.code }}{{ department.name }}{{ 'Active' if department.is_active else 'Inactive' }}
{% endblock %}