{% extends 'standingsmanager/_base.html' %} {% load i18n %} {% load static %} {% block details %}
Manage which characters automatically sync standings. Characters must have an approved standing before they can be added to sync.
| Character | Corporation / Alliance | Label Status | Last Sync | Sync Status | Actions |
|---|---|---|---|---|---|
|
|
{{ char.corporation_name }}
{% if char.corporation_ticker %}
[{{ char.corporation_ticker }}]
{% endif %}
{% if char.alliance_name %}
{{ char.alliance_name }} {% endif %} |
{% if char.is_synced %} {% if char.has_label %} Found {% else %} Missing {% endif %} {% else %} - {% endif %} | {% if char.last_sync_at %} {{ char.last_sync_at|date:"Y-m-d H:i" }} {% else %} Never {% endif %} | {% if char.sync_status == 'fresh' %} {{ char.sync_status_text }} {% elif char.sync_status == 'stale' %} {{ char.sync_status_text }} {% elif char.sync_status == 'error' %} {{ char.sync_status_text }} {% elif char.sync_status == 'no_label' %} {{ char.sync_status_text }} {% else %} {{ char.sync_status_text }} {% endif %} | {% if char.can_add_sync %} {% elif char.can_remove_sync %} {% else %} {% if not char.has_standing %} No standing approved {% else %} - {% endif %} {% endif %} |