{% load i18n %}

Personal Access Tokens

New Personal Access Token
{% for token in object_list %}
{% trans "Name" %}: {{ token.name }}
{% trans "Description" %}: {{ token.description }}
{% trans "Last Used At" %}: {{ token.last_used_at|date }}
{% trans "Revoked At" %}: {{ token.revoked_at|date }}
{% if not token.revoked_at %}
Revoke
{% endif %}
{% empty %}
{% trans "Not tokens yet." %}
{% endfor %}
{% if page_obj.has_previous %} « {% trans "First" %} {% trans "Previous" %} {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% if page_obj.has_next %} {% trans "Next" %} {% trans "Last" %} » {% endif %}