{% 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
{{ 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. You must have valid tokens for ALL characters in the corporation.

{% for corp in corporations %} {% endfor %}
Corporation Alliance Characters Status Token Coverage Actions
{{ corp.name }} {{ corp.name }} [{{ corp.ticker }}] {% if corp.alliance_name %} {{ corp.alliance_name }} {% else %} - {% endif %} {{ corp.character_count }} character{{ corp.character_count|pluralize }} {% 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, you must have valid tokens for ALL characters you own in that corporation. This ensures you have full control and authorization for the corporation-level request.

{% if required_scopes %}

Required Scopes for Your Account

{% endif %}
{% endblock %} {% block extra_javascript %} {% endblock %}