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

{% trans "Account Activity" %}

{% endblock %} {% block content %} {% if auth_log %} {% if full_auth_log_length > auth_log|length %}

{% blocktrans with accesses=auth_log|length%}The {{ accesses }} most recent accesses made with your account are shown here.{% endblocktrans %}

{% else %}

{% blocktrans %}Recent accesses made with your account are shown here.{% endblocktrans %}

{% endif %}

{% blocktrans %}This includes authentication requests made by other sites and devices.{% endblocktrans %}

{% for attempt in auth_log %} {% endfor %}
{% trans "Time/date" %} {% trans "Type" %} {% trans "IP address" %} {% trans "User Agent/Browser" %}
{{ attempt.when_created }} {{ attempt.log_type_label }} {{ attempt.remote_ip }} {{ attempt.user_agent }}
{% else %}

{% trans "Your account has no activity yet." %}

{% endif %} {% endblock %}