{% extends "base.html" %}
{% block headtitle %}User Profile{% endblock %}
{% block breadcrumbs %}
Home
User Profile
{% endblock %}
{% block main_content %}
Click here to change your password.
EVE API Keys
KeyID |
State |
|
{% for key in api_keys %}
#{{ key.keyID }} |
{{ key.is_valid_html|safe }} |
Edit |
Delete |
{% endfor %}
Add new API Key
Owned Characters
Name |
|
{% for owned in characters %}
{{ owned.permalink|safe }} |
Delete |
{% endfor %}
{% if external_apps %}
External Application Bindings
Application |
External Username |
|
{% for app in external_apps %}
{{ app.app.name }} |
{% if app.binding %}{{ app.binding.external_name }}{% else %}None{% endif %} |
{% if app.binding %}Delete
{% else %}Bind{%endif%} |
{% endfor %}
{% endif %}
{% endblock %}
{% block post_javascripts %}
{% endblock %}