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


Spinner
{% trans "Icon Legend" %}
{% trans "Character is in this organisation." %}
{% trans "The character has no standings from this organisation towards it." %}
{% trans "The standing has been requested and is pending action by a Standings Manager." %}
{% trans "The standing has been actioned by a Standings Manager but is waiting for API verification." %}
{% trans "The standing has been revoked by a Standings Manager or automatically if you no longer meet the requirements permitting blue standings access." %}
{% 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 %}