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

API token: {{ token.id }}

{% if token.description %}
Description
{{ token.description }}
{% endif %}
Token status
{{ token_status }}
Actor
{{ token.actor_id }}
Created
{{ timestamp(token.created_timestamp) }}
Last used
{{ timestamp(token.last_used_timestamp) }}
Restrictions
{{ restrictions }}
{% if token_status == "Live" %}

{% endif %} {% endblock %}