{% extends "public/base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}{% trans "Available" %}{% endblock page_title %} {% block extra_css %}{% endblock extra_css %} {% block content %}

{% trans "Available Groups" %}

{% if STATE == MEMBER_STATE or user.is_superuser %} {% if pairs %} {% for pair in pairs %} {% endfor %}
{% trans "GroupName" %} {% trans "GroupDesc" %} {% trans "Action" %}
{{ pair.0.name }} {{ pair.1.description }} {% if pair.0 in user.groups.all %} {% if pair.2 == "" %} {% trans "Leave" %} {% else %} {% endif %} {% elif pair.2 == "" %} {% trans "Request" %} {% else %} {% endif %}
{% else %}
No groups available.
{% endif %} {% else %} {% if IS_CORP %} {% else %} {% endif %} {% endif %}
{% endblock content %}