{% extends 'base.html' %} {% load static %} {% block title %}IT Request Forms{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

IT Request Forms

{% if user_groups %}
{% endif %}
{% 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 user_groups %} {% for group in user_groups %} {% if 'it-forms-admin' in group.roles %} Leadership Dashboard {% endif %} {% endfor %} {% endif %}
{% endblock %}