{% extends "base.html" %} {% load i18n %} {% block headtitle %}{% trans 'User Profile' %}{% endblock %} {% block main_content %}

{% trans 'Click here to change your password.' %}

{% trans 'EVE API Keys' %}

{% for key in api_keys %} {% endfor %}
{% trans 'KeyID' %} {% trans 'State' %}
#{{ key.keyID }} {{ key.is_valid_html|safe }} Edit {% trans 'Delete' %}
Add new API Key

Owned Characters

{% for owned in characters %} {% endfor %}
{% trans 'Name' %}
{{ owned.permalink|safe }} {% trans 'Delete' %}
{% if external_apps %}

External Application Bindings

{% for app in external_apps %} {% endfor %}
{% trans 'Application' %} {% trans 'External Username' %}
{{ app.app.name }} {% if app.binding %}{{ app.binding.external_name }}{% else %}{% trans 'None' %}{% endif %} {% if app.binding %}{% trans 'Delete' %} {% else %}{% trans 'Bind' %}{%endif%}
{% endif %} {% endblock %} {% block post_javascripts %} {% endblock %}