{% extends "authkeys/base.html" %} {% block intro %}{{ _("API Keys: Create Key" | safe) }}{% endblock %} {% block subcontent %} {% if not key %} {% trans %}

Describe your intended use for this key, below.

NOTE: This will be your only means of identifying this key later, other than the date and time of its creation. So, be as clear as you can.

{% endtrans %}
{{ csrf() }} {{ form.as_p() }} {{ _('Cancel') }}
{% else %} {% trans list_url=url('authkeys.list') %}

Your new key has been created. Please make a note of the details below (e.g. by copying them into your application's settings). This information will never be displayed again, and cannot be recovered if lost.

NOTE: When you're done, return to the key list. Reloading this page will create a new key.

{% endtrans %}
{{ _("Key ID") }}
{{ key.key }}
{{ _("Secret") }}
{{ secret }}
{{ _("Created") }}
{{ key.created }}
{{ _("Description") }}
{{ key.description }}
{% endif %} {% endblock %}