{% extends "base.html" %} {% load i18n %} {% comment %} Copyright 2010 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block title %}{% trans "List of tokens" %}{% endblock %} {% block text_title %}

{% trans "List of tokens" %}

{% endblock %} {% block content %} {% if tokens %}

{% blocktrans %}Below is a list of applications which have used your Single Sign On account to authenticate. You can force an application to re-authenticate by clicking its associated "Revoke" button.{% endblocktrans %}

{% for token in tokens %} {% endfor %}
{% trans "Token name" %} {% trans "Created" %}
{{ token.name }} {{ token.created_at|date:"Y-m-d" }}
{% csrf_token %}
{% else %}

{% trans "You don't have any tokens associated with this account." %}

{% endif %}

Go back

{% endblock %}