{% extends "accounts/_section.html" %} {% block title %}{{user.username}} - api keys{% endblock %} {% block section_content %}

Your api keys (for Api V1)

Apply for a new key

{% csrf_token %} {{ form.as_table }}

Your existing keys

{% for key in user.api_keys.all %} {% endfor %}
KeyApplicationStatusDescription
{{ key.key }}{{ key.name }}{{ key.status }}{{ key.description }}
{% endblock %}