{% extends 'base.html' %} {% load training_tags %} {% block title %}{{ requests_page_title }}{% endblock %} {% block extrahead %} {# For training requests #} {% load static %} {% endblock %} {% block content %}

{% if tab == 'access' %} {{ access_requests_title }} {% elif tab == 'buddy' %} {{ buddy_requests_title }} {% elif tab == 'adjustment' %} {{ adjustment_requests_title }} {% elif tab == 'training' %} Training requests {% elif tab == 'staff_assistance' %} {{ staff_assistance_requests_title }} {% else %} Requests {% endif %}

{% if access_user_request_allowed_exist and facility_managers_exist %}
{# This will be loaded asynchronously #}
{% endif %} {% if buddy_system_areas_exist %}
{# This will be loaded asynchronously #}
{% endif %} {% if adjustment_request_allowed and facility_managers_exist %}
{# This will be loaded asynchronously #}
{% endif %} {% if training_show_in_user_requests %}
{# This will be loaded asynchronously #}
{% endif %} {% if staff_assistance_request_allowed %}
{# This will be loaded asynchronously #}
{% endif %}
{# For training tab #} {% include 'snippets/confirm_action_modal.html' %} {% endblock %}