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

{% translate 'Alliance for Sync' %}

{% if alliance %}    {{ alliance.alliance_name }}   ( {% if alliance_contacts_count != None %} {{ alliance_contacts_count }} contacts {% if alliance_war_targets_count != None %} , {% endif %} {% endif %} {% if alliance_war_targets_count != None %} {{ alliance_war_targets_count }} war targets {% endif %} ) {% else %}

Not configured

{% endif %}

{% translate 'Your Synced Characters' %}

{% if has_synced_chars %} {% for character in synced_characters|dictsort:"name" %} {% if character.errors %} {% else %} {% endif %} {% endfor %}
Name Organization Status Disable
  {{ character.name }} {{ character.organization }} {% if character.errors %} {% for error in character.errors %} {{ error }}
{% endfor %} {% else %} {% endif %}
{% else %}

None

{% endif %}
{% if alliance %} Add Character to Sync {% else %} {% endif %}

Read Me First

Once activated this app will automatically update the personal contacts of your synced characters.

{% if alliance_contacts_count != None %}

Alliance Contacts Sync Mode

{% if sync_mode == sync_mode_replace %} {# Replace Mode #}

Mode: REPLACE - All personal contacts will be replaced with alliance contacts, allowing you to see alliance standings on your synced characters.

Warning: You will lose all personal contacts on your synced characters.

Note: You can only sync out-of-alliance alts (characters not in the alliance).

{% elif sync_mode == sync_mode_merge %} {# Merge Mode #}

Mode: MERGE - Alliance contacts will be automatically synced while preserving your personal contacts.

Required Setup: Please create a contact label with the name "{{ alliance_contacts_label_name }}" on all your synced characters. This label is used to track which contacts are managed by the alliance sync.

Tip: All alliance-synced contacts will be automatically marked with the "{{ alliance_contacts_label_name }}" label, making it easy to distinguish them from your personal contacts.

Note: You can only sync out-of-alliance alts (characters not in the alliance).

{% elif sync_mode == sync_mode_preserve %} {# Preserve Mode #}

Mode: PRESERVE - Your personal contacts are completely preserved. Alliance contacts are NOT synced.

This mode is useful when you only want to sync war targets without modifying any existing contacts. Only war targets will be synced if war target syncing is enabled.

{% endif %} {% endif %} {% if alliance_war_targets_count != None %}

War Targets

Adds current alliance war targets as personal contacts with -10 standing to your synced characters. If the contact already exists it will be overwritten. War targets can be distinguished by having the war targets contact label.

Please make sure to create a contact label with the name "{{ war_targets_label_name }}" on all your synced characters.

{% endif %}
{% endblock %}