{% extends "standingsrequests/base.html" %} {% load bootstrap %} {% load static %} {% load i18n %} {% block page_content %}


Spinner
{% trans "Icon Legend" %}
{% trans "Character is in this organisation." %}
{% trans "The character / corporation has no standings from this organisation towards it." %}
{% trans "The standing has been requested and is pending action by a standings manager." %}
{% trans "The request has been accepted by a standings manager, but is waiting for confirmation that those standings have been updated in game." %}
{% trans "The standing is being revoked by yourself, a standings manager or automatically if you no longer meet the requirements permitting blue standings access. It is pending confirmation." %}
{% trans "More keys are required to request standing for this corporation." %}
{% endblock page_content %} {% block extra_script %} $(function() { /* async load request_entities view into div or show HTTP errors if any */ $("#div_request_entities").load( "{% url 'standingsrequests:request_entities' %}", function(responseTxt, statusTxt, xhr){ if(statusTxt == "error"){ $("#div_request_entities").html( '

{% trans "Failed to load content. Please reload this page to try again." %}

' ); } }); }); {% endblock extra_script %}