{% block search %} {% load i18n static %}
{% endblock %}
{% if personal_api_key_object %}
{% elif project_secret_api_key_object %}
{% elif team_object %}
{% elif oauth_access_token_object %}
{% elif oauth_refresh_token_object %}
{% elif query != "" %}
No results found
{% endif %}
|
{% trans "Type" %}
|
{% trans "Label" %}
|
{% trans "User" %}
|
{% trans "Scopes" %}
|
{% trans "Organization/Project scope" %}
|
{% trans "Created" %}
|
{% trans "Last Used" %}
|
{% trans "Last Rolled" %}
|
|---|---|---|---|---|---|---|---|
| Personal API key ({{ personal_api_key_hash_mode }}) | {{ personal_api_key_object.label }} | {{ personal_api_key_object.user.email }} | {{ personal_api_key_object.scopes }} | {% if personal_api_key_object.scoped_organizations %} Organization access {% elif personal_api_key_object.scoped_teams %} Project access {% else %} All access {% endif %} | {{ personal_api_key_object.created_at }} | {{ personal_api_key_object.last_used_at }} | {{ personal_api_key_object.last_rolled_at }} |
|
{% trans "Type" %}
|
{% trans "Label" %}
|
{% trans "Team" %}
|
{% trans "Scopes" %}
|
{% trans "Created By" %}
|
{% trans "Created" %}
|
{% trans "Last Used" %}
|
{% trans "Last Rolled" %}
|
|---|---|---|---|---|---|---|---|
| Project Secret API Key | {{ project_secret_api_key_object.label }} | {{ project_secret_api_key_object.team.name }} | {{ project_secret_api_key_object.scopes }} | {% if project_secret_api_key_object.created_by %} {{ project_secret_api_key_object.created_by.email }} {% else %} - {% endif %} | {{ project_secret_api_key_object.created_at }} | {{ project_secret_api_key_object.last_used_at }} | {{ project_secret_api_key_object.last_rolled_at }} |
|
{% trans "Type" %}
|
{% trans "Team" %}
|
|---|---|
| Feature Flags Secure API Key {% if team_object_key_type == "backup" %} (Backup) {% endif %} | {{ team_object.name }} |
|
{% trans "Type" %}
|
{% trans "User" %}
|
{% trans "Application" %}
|
{% trans "Expires" %}
|
{% trans "Scope" %}
|
{% trans "Created" %}
|
|---|---|---|---|---|---|
| OAuth Access Token | {% if oauth_access_token_object.user %} {{ oauth_access_token_object.user.email }} {% else %} - {% endif %} | {% if oauth_access_token_object.application %} {{ oauth_access_token_object.application.name }} {% else %} - {% endif %} | {{ oauth_access_token_object.expires }} | {{ oauth_access_token_object.scope }} | {{ oauth_access_token_object.created }} |
|
{% trans "Type" %}
|
{% trans "User" %}
|
{% trans "Application" %}
|
{% trans "Revoked" %}
|
{% trans "Created" %}
|
|---|---|---|---|---|
| OAuth Refresh Token | {% if oauth_refresh_token_object.user %} {{ oauth_refresh_token_object.user.email }} {% else %} - {% endif %} | {% if oauth_refresh_token_object.application %} {{ oauth_refresh_token_object.application.name }} {% else %} - {% endif %} | {{ oauth_refresh_token_object.revoked|yesno:"Yes,No" }} | {{ oauth_refresh_token_object.created }} |