{% 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 "Applications you use" %}{% endblock %} {% block text_title %}

{% trans "Applications you use" %}

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

{% blocktrans %}You have used the applications shown here to access your account. If you have stopped using one of these and would like to prevent it from being used to access your account, click its "Delete" button below.{% endblocktrans %}

{% blocktrans %}You can choose to allow an application to have access again if you like by opening that application and instructing it to access your account. You'll have to provide your username and password before it will be granted access.{% endblocktrans %}

{% trans "Applications you last used" %}

{% for token in tokens %} {% endfor %}
{{ token.name }} {{ token.date_created|date:"Y/m/d" }}
{% csrf_token %}
{% else %}

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

{% endif %} {% endblock %}