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

All Standings {{ total_count }}

View all current standings in the system. Use the tabs below to filter by entity type.

{% if characters %} {% for standing in characters %} {% endfor %}
Character Standing Requested By Main Character Added Date Notes
{{ standing.entity_name }} {{ standing.entity_name }} {% if standing.standing >= 5 %} {{ standing.standing }} {% elif standing.standing >= 0 %} {{ standing.standing }} {% elif standing.standing >= -5 %} {{ standing.standing }} {% else %} {{ standing.standing }} {% endif %} {{ standing.added_by }} {{ standing.added_by_main }} {{ standing.added_date|date:"Y-m-d H:i" }} {% if standing.notes %} {{ standing.notes|truncatewords:10 }} {% else %} - {% endif %}
{% else %}
No character standings.
{% endif %}
{% if corporations %} {% for standing in corporations %} {% endfor %}
Corporation Standing Requested By Main Character Added Date Notes
{{ standing.entity_name }} {{ standing.entity_name }} {% if standing.standing >= 5 %} {{ standing.standing }} {% elif standing.standing >= 0 %} {{ standing.standing }} {% elif standing.standing >= -5 %} {{ standing.standing }} {% else %} {{ standing.standing }} {% endif %} {{ standing.added_by }} {{ standing.added_by_main }} {{ standing.added_date|date:"Y-m-d H:i" }} {% if standing.notes %} {{ standing.notes|truncatewords:10 }} {% else %} - {% endif %}
{% else %}
No corporation standings.
{% endif %}
{% if alliances %} {% for standing in alliances %} {% endfor %}
Alliance Standing Requested By Main Character Added Date Notes
{{ standing.entity_name }} {{ standing.entity_name }} {% if standing.standing >= 5 %} {{ standing.standing }} {% elif standing.standing >= 0 %} {{ standing.standing }} {% elif standing.standing >= -5 %} {{ standing.standing }} {% else %} {{ standing.standing }} {% endif %} {{ standing.added_by }} {{ standing.added_by_main }} {{ standing.added_date|date:"Y-m-d H:i" }} {% if standing.notes %} {{ standing.notes|truncatewords:10 }} {% else %} - {% endif %}
{% else %}
No alliance standings.
{% endif %}

Help

Standings Overview

This page shows all current standings in the system. These standings are automatically synced to all characters that have been added to the sync system.

Standing Values

CSV Export

Click the "Export CSV" button to download a complete list of all standings in CSV format. This can be useful for backup, analysis, or importing into other tools.

Managing Standings

To modify standings, use the Django admin interface or approve/reject requests in the "Manage Requests" page.

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