{% extends "base_content.html" %} {% block title %}{{ entity }} - API Tokens{% endblock %} {% block page_content %}
{% if tokens | length == 0 %}

No active API tokens found.

{% else %}
{% for token in tokens %} {% endfor %}
Short token Scope Permission App Created Expires Actions
{{ token.short_token }} {{ token.scoped_database | default(value="(all databases)") }} {{ token.permission_level | default(value="(full access)") }} {{ token.app_name | default(value="") }} {{ token.created_at | default(value="") }} {{ token.expires_at | default(value="(never)") }}
{% endif %}

Revoke token

Are you sure you want to revoke token ?

This token will no longer be able to access the API.

{% endblock %}