{% load bootstrap %} {% load static %} {% load i18n %} {% load evelinks %}

On this page you can create requests to get standing or revoke standing with {{ organization.name }} for your alts. If you are missing an alt, please add it first on the dashboard.

{% trans "Your Characters" %}

{% if authinfo.main_char_id %} {% else %} {% endif %}
{% for std in characters %} {% endfor %}
{% trans "Character" %} {% trans "Corporation" %} {% trans "Alliance" %} {% trans "Scopes" %} {% trans "Standing" %} {% trans "Actions" %}
   {{ std.character.character_name }} [{{ std.character.corporation_ticker }}] {{ std.character.corporation_name }} {{ std.character.alliance_name|default_if_none:"" }} {% if std.hasRequiredScopes %} {% else %} {% trans "Required" %} {% endif %}

{% if std.inOrganisation == True %} {% elif std.requestActioned == True %} {% elif std.pendingRequest == True %} {% elif std.pendingRevocation == True %} {% elif std.standing == None and std.pendingRequest == False %} {% else %} {% include 'standingsrequests/partials/_standing.html' with standing=std.standing %} {% endif %}

{% if std.inOrganisation == True %} {% elif std.pendingRequest == True or std.requestActioned == True %} Cancel {% elif std.pendingRevocation == True %} {% elif not std.hasStanding %}  Apply  {% else %} Revoke {% endif %}

{% if corporations_enabled %}

{% trans "Your Corporations" %}

{% if authinfo.main_char_id %} {% else %} {% endif %}
{% for st in corps %} {% endfor %}
{% trans "Corporation" %} {% trans "Alliance" %} {% trans "Keys/Req" %} {% trans "Standing" %} {% trans "Actions" %}
    {{ st.corp.corporation_name }} {{ st.corp.alliance_name|default_if_none:"" }} {{ st.token_count }}/{{ st.corp.member_count }}

{% if st.inOrganisation == True %} {% elif st.requestActioned == True %} {% elif st.pendingRequest == True %} {% elif st.pendingRevocation == True %} {% elif st.standing == None and st.pendingRequest == False %} {% else %} {% include 'standingsrequests/partials/_standing.html' with standing=st.standing %} {% endif %}

{% if st.pendingRequest == True or st.requestActioned == True %} Cancel {% elif st.pendingRevocation == True %} {% elif not st.hasStanding %} {% if st.token_count >= st.corp.member_count %}  Apply  {% else %} {% endif %} {% else %} Revoke {% endif %}

{% endif %}