{% 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 position_list %}
{% for position in position_list %} {% include 'includes/position_list_item.html' %} {% endfor %}
{% else %}

There are no positions in the portal.

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