{% 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
{{ token.actor_id }}
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" %}

{% endif %} {% endblock %}