{% extends "base.html" %} {% block title %}API token{% if token.description %}: {{ token.description }}{% endif %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

API token: {{ token.id }}

List all tokens

{% if token.description %}
Description
{{ token.description }}
{% endif %}
Token status
{{ token_status }}
Actor
{% if actor_display %}{{ actor_display }} ({{ token.actor_id }}){% else %}{{ token.actor_id }}{% endif %}
Created
{{ timestamp(token.created_timestamp) or "None" }}
Last used
{{ timestamp(token.last_used_timestamp) or "None" }}
{% if token.expires_after_seconds %}
Expires at
{{ timestamp(token.created_timestamp + token.expires_after_seconds) }}
{% endif %}
Restrictions
{{ restrictions }}
{% if token_status == "Active" and can_revoke %}

{% endif %} {% endblock %}