{% 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 "You have been logged out" %}{% endblock %} {% block text_title %}

{% trans "You have been logged out" %}

{% endblock %} {% block content %}

{% blocktrans %}You are now logged out of the {{ brand_description }} website. However, you have not been automatically logged out of every website that uses this service.{% endblocktrans %}

{% if return_to_url %} {% blocktrans with return_to_url as url and return_to_site_name as site_name %}

Return to {{ site_name }}

{% endblocktrans %} {% endif %} {% if other_sites %}

{% trans "Sites you may still be logged into" %}

{% for site in other_sites %} {% endfor %}
{% trans "Site" %} {% trans "Last authenticated" %}
{{ site.trust_root }} {{ site.date_last_used|date:"Y-m-d" }}
{% endif %} {% endblock %}