{% extends 'common/base.html' %} {% block title %}Department List{% endblock %} {% block content %}

Department List Add Department

{% for department in departments %} {% empty %} {% endfor %}
# Department Name Rank Status Action
{{ forloop.counter }} {{ department.name }} {{ department.rank }} {% if department.status %} Active {% else %} Inactive {% endif %}
No departments found.
{% endblock %}