{% 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 in characters_added.apps.values %} {% endfor %} {% for char in characters_added.characters %} {% for app, data in characters_added.apps.items %} {% with is_added=char|get_char_attr:app %} {% if is_added %} {% else %} {% endif %} {% endwith %} {% endfor %} {% endfor %}
Character{{ app.field_label }}
{{ char }}
{% for app_id, app in characters_added.apps.items %}
Scopes required: {{ app.scopes|unordered_list|safe }}
{% endfor %}
{% endblock charlink_content %}