{% extends 'allianceauth/base.html' %} {% load bootstrap %} {% block page_title %}Charlink{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

Character Linking

Login Form

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 }}

Linked Characters

{% for app in characters_added.apps %} {% endfor %} {% for char, app_list in characters_added.characters.items %} {% for is_added in app_list %} {% if is_added %} {% else %} {% endif %} {% endfor %} {% endfor %}
Character{{ app }}
{{ char }}

Applications Info

{% for app in apps %} {{ app.field_label }}

Scopes: {{ app.scopes|unordered_list|safe }} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endblock content %}