{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% translate "Auth Tokens" %} · {{ site_title }}{% endblock %} {% block content %}
{% if messages %} {% endif %}

{% translate "Auth Tokens" %}

{% csrf_token %} {% for auth_token in auth_tokens %} {% empty %} {% endfor %}
{% translate "Auth Tokens" %}
{{ auth_token.description }}
{% if auth_token.is_user_bound %} {% translate "Personal token for" %} {% if auth_token.user %}{{ auth_token.user }}{% else %}{% translate "deleted user" %}{% endif %} {% else %} {% translate "Service token" %} {% endif %} · {% if auth_token.is_project_bound %} {{ auth_token.project }} {% elif auth_token.is_user_bound %} {% translate "All my projects" %} {% else %} {% translate "All projects" %} {% endif %}
{% if auth_token.has_all_capabilities %} {% translate "All capabilities" %} {% elif auth_token.capability_groups %}
{% for prefix, names in auth_token.capability_groups %} {{ prefix }}: ({{ names|join:", " }}) {% endfor %}
{% else %} {% translate "No capabilities" %} {% endif %}
{% translate "No Auth Tokens." %}
{% endblock %}