{% extends "base.html" %} {% from "macros.html" import clipboard_button %} {% block title %}{{ site_name }}: API Keys{% endblock title %} {% block content %}

API Keys

You can create API keys for this app's {% if '-dev' in app_version %} {% else %} {% endif %} external API using the button below. This is unrelated to the official EVE API from CCP.

{% for key in current_user.api_keys %} {% else %} {% endfor %}
Key Created Remove
{{ clipboard_button(key.hex_key, "bottom", "") }} {{ key.timestamp.strftime('%d %b %Y @ %H:%M') }}
{{ form.csrf_token }} {{ form.action(value='delete') }} {{ form.key_id(value=key.id) }}
No API keys created.
{{ form.csrf_token }} {{ form.action(value='add') }}
{% endblock content %}