{% extends "base.html" %} {% load i18n %} {% load static_url %} {% comment %} Copyright 2012 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block extra_header %} {% endblock %} {% block title %} {% blocktrans %}{{ user }}'s devices{% endblocktrans %} {% endblock %} {% block text_title %}

{% trans "Your authentication devices" %}

{% endblock %} {% block content %} {% include "common/missing_backup_device_warning.html" %} {% include "common/printed_codes_nearly_exhausted_warning.html" %}
{% if devices %}

{% trans "Authentication devices you've added" %}

{% for device in devices %} {% endfor %}
{% trans "Name" %} {# command buttons #}
{{ device.name }} {% trans "Rename" %} {% trans "Delete" %} {% if device.device_type == 'paper' %} {% trans "View Codes" %} {% endif %}
{% else %}

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

{% endif %}

{% trans "Add a new authentication device" %}

{% trans "Report a lost or stolen device" %}

{% blocktrans with "twofactor_faq"|static_url as 2FFAQ %} 2-Factor Auth FAQ {% endblocktrans %}

{% endblock %}