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

My Synced Characters

{% if characters %}

Manage which characters automatically sync standings. Characters must have an approved standing before they can be added to sync.

Important: Each character must have a contact label named "{{ label_name }}" created in-game. Click here for instructions

How to Create a Contact Label In-Game

  1. Log in to EVE Online with your character
  2. Open the People & Places window (Alt+E)
  3. Go to the "Contacts" tab
  4. Click the "Labels" button at the top
  5. Click "Create Label"
  6. Enter exactly: {{ label_name }}
  7. Click "OK"
  8. The sync system will detect the label on the next sync cycle
{% for char in characters %} {% endfor %}
Character Corporation / Alliance Label Status Last Sync Sync Status 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.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 %}
{% else %}
You have no characters. Please add a character first.
{% endif %}

Help

How Sync Works

  1. Request and get approval for standings (see "Request Standings" page)
  2. Add your approved characters to sync using the "Add to Sync" button above
  3. Create a contact label named "{{ label_name }}" in-game for each character
  4. The sync system will automatically update your character's contacts every 30 minutes
  5. All contacts with the "{{ label_name }}" label will be managed by the system

Label Status

Sync Status

Important Notes

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