{% extends 'base.html' %} {% block title %} Departments {% endblock %} {% block content %}

Department Management

{% for department in departments %} {% endfor %}
Id Name Description Actions
{{ loop.index }} {{ department.name }} {{ department.description or 'N/A' }}
{% endblock %}