{% extends "cm_portal/hris_index.html" %} {% block title %}| List of Positions{% endblock %} {% block page_title %}| List of Positions{% endblock %} {% block sidebar %}

{% if user.is_authenticated %} {% include 'includes/user.html' %} {% endif %} {% endblock %} {% block content %}
{% if department_list %}
{% for department in department_list %} {% include 'includes/department_list_item.html' %} {% endfor %}
{% else %}

There are no departments in the portal.

{% endif %}
{% if is_paginated %} {% include 'includes/pagination.html' %} {% endif %} {% if perms.cm_portal.add_department %} Add a department {% else %} Add a department {% endif %}
{% endblock %}