{% extends 'charlink/base.html' %} {% load bootstrap %} {% load charlinkutils %} {% block page_title %}Charlink{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block charlink_page_header %}

Character Linking

{% endblock charlink_page_header %} {% block charlink_content %}

Select the apps you want to link from the list. You will be redirected to eveonline website to authenticate and provide the token with all the scopes needed.


{% csrf_token %} {{ form|bootstrap }}
{% for app_imports in characters_added.apps.values %} {% for login_import in app_imports.imports %} {% endfor %} {% endfor %} {% for char in characters_added.characters %} {% for imports in characters_added.apps.values %} {% for login_data in imports.imports %} {% with is_added=char|get_char_attr:login_data.get_query_id %} {% if is_added %} {% else %} {% endif %} {% endwith %} {% endfor %} {% endfor %} {% endfor %}
Character{{ login_import.field_label }}
{{ char }}
{% for import_data in characters_added.apps.values %} {% for login_data in import_data.imports %}
Scopes required: {{ login_data.scopes|unordered_list|safe }}
{% endfor %} {% endfor %}
{% endblock charlink_content %}