{% import "macros/alerts.html" as alerts %} {% import "macros/buttons.html" as buttons %} {% import "macros/modal.html" as modal %} {% import "macros/icons.html" as icons %} {% extends "admin/api_keys/list.html" %} {% block head_title_content %}{{ api_key.name }} ยท {{ super() }}{% endblock %} {% set open_modal = true %} {% block modal %}
{% call modal.header() %} {% call modal.title() %}Save your API Key token{% endcall %} {% endcall %} {% call modal.body() %} {% call alerts.warning() %} The token below will be shown only once. Be sure to store it somewhere safe. {% endcall %}
{{ buttons.clipboard(token | trim) }}
{{ token | trim }}
{% endcall %} {% call modal.footer() %} {% endcall %}
{% endblock %}