{% extends 'standingsmanager/_base.html' %} {% load i18n %} {% load static %} {% block details %}
View all current standings in the system. Use the tabs below to filter by entity type.
| Character | Standing | Requested By | Main Character | Added Date | Notes |
|---|---|---|---|---|---|
|
|
{% 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 %} |
| Corporation | Standing | Requested By | Main Character | Added Date | Notes |
|---|---|---|---|---|---|
|
|
{% 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 %} |
| Alliance | Standing | Requested By | Main Character | Added Date | Notes |
|---|---|---|---|---|---|
|
|
{% 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 %} |
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.
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.
To modify standings, use the Django admin interface or approve/reject requests in the "Manage Requests" page.