{%extends "globus-portal-framework/v2/base.html"%} {% load static %} {% load index_template %} {%block title%}Request Groups Access{%endblock%} {%block body%}
{% index_template 'components/messages.html' as it_mess %} {% include it_mess %}
You may request access to the following groups
    {% block allowed_groups_list %} {% for group in allowed_groups|dictsort:'name' %}
  • {{group.name}} {% if group.is_member == True %} {% block is_member_of_group %} You are a member {% endblock %} {% else %} {% block is_not_member_of_group %} Request Access {% endblock %} {% endif %}
  • {% empty %} {% block no_group_configured %}
  • No allowed groups configured, this portal does not restrict which users can login.
  • {% endblock %} {% endfor %} {% endblock %}
{% if not request.user.is_authenticated %}

If you are already a member of a group above, you can Login Now

{% endif %}
{% endblock %}