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

Character Linking

{% if is_auditor %}

Admin Section

{% endif %}

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

Applications Info

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

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