{% extends 'vision_it_request_forms/_page.html' %} {% block title %}IT Request Forms{% endblock %} {% block itr_content %} {% comment %} The company selector in the dashboard sidebar chooses the group — this page has no selector of its own. The sidebar writes localStorage.selectedGroupId and then fires `groupChanged` on the document; that re-renders the frame for the newly chosen group. The filter drops the event when it names the group already on screen: the sidebar also replays its stored selection shortly after every page load, which would otherwise re-fetch the page we are already looking at. {% endcomment %}

IT Request Forms

{% if forms %}
{% for form in forms %}

{{ form.name }}

{% if form.description %}

{{ form.description }}

{% endif %}
{% if form.is_universal %} Universal {% else %} Tenant {% endif %}
{% endfor %}
{% else %}

No forms available{% if current_group_id %} for this group{% endif %}.

{% endif %}
My Requests {% if it_requests_user_groups %} {% for group in it_requests_user_groups %} {% if 'it-forms-admin' in group.roles %} Leadership Dashboard {% endif %} {% endfor %} {% endif %}
{% endblock %}