{% extends 'standingsmanager/_base.html' %} {% load i18n %} {% load static %} {% block details %}

My Characters

{% if characters %}

Request standings for your characters. Once approved, you can add them to sync.

{% for char in characters %} {% endfor %}
Character Corporation / Alliance Status Scopes Actions
{% if char.can_request %} {% elif char.can_remove %} {% endif %} {{ char.name }} {{ char.name }} {{ char.corporation_name }} {% if char.corporation_ticker %} [{{ char.corporation_ticker }}] {% endif %} {% if char.alliance_name %}
{{ char.alliance_name }} {% endif %}
{% if char.status == 'approved' %} {{ char.status_text }} {% elif char.status == 'pending' %} {{ char.status_text }} {% elif char.status == 'can_request' %} {{ char.status_text }} {% else %} {{ char.status_text }} {% endif %} {% if char.has_scopes %} All scopes {% else %} Missing scopes {% if char.missing_scopes %}
{{ char.missing_scopes|join:", " }} {% endif %}

Add Required Scopes {% endif %}
{% if char.can_request %} {% elif char.can_remove %} {% else %} - {% endif %}
{% else %}
You have no characters. Please add a character first.
{% endif %}

My Corporations

{% if corporations %}

Request standings for entire corporations. ALL characters in the corporation must have valid tokens registered in Auth.

{% for corp in corporations %} {% endfor %}
Corporation Alliance Members Status Token Coverage Actions
{{ corp.name }} {{ corp.name }} [{{ corp.ticker }}] {% if corp.alliance_name %} {{ corp.alliance_name }} {% else %} - {% endif %} {{ corp.registered_count }}/{{ corp.actual_member_count }} registered {% if corp.status == 'approved' %} {{ corp.status_text }} {% elif corp.status == 'pending' %} {{ corp.status_text }} {% elif corp.status == 'can_request' %} {{ corp.status_text }} {% else %} {{ corp.status_text }} {% endif %} {% if corp.has_full_coverage %} Complete {% else %} Incomplete {% if corp.missing_characters %}
Missing: {{ corp.missing_characters|join:", " }} {% endif %}
{% endif %}
{% if corp.can_request %} {% elif corp.can_remove %} {% else %} - {% endif %}
{% else %}
No corporations found.
{% endif %}

Help

How to Request Standings

  1. Ensure your character has all required ESI scopes (shown in the "Scopes" column)
  2. Click "Request Standing" to create a request
  3. Wait for an approver to review and approve your request
  4. Once approved, you can add the character to sync in the "My Synced Characters" page

Corporation Requests

To request standings for a corporation, ALL characters in the corporation must have valid tokens registered in Auth. This ensures the entire corporation has authorized the standing request.

{% if required_scopes %}

Required Scopes for Your Account

{% endif %}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% block extra_css %} {{ block.super }} {% include 'bundles/datatables-css.html' %} {% endblock %}