{% extends "authentic2/base-page.html" %} {% load i18n %} {% load trusted_device_helpers %} {% block breadcrumb %} {{ block.super }} {% trans "Your account" %} {{ view.title }} {% endblock %} {% block content %}

{% trans "Manage your trusted devices" %}

{% for trusted_device in trusted_devices %} {% endfor %}
{% trans "Name" %} {% trans "Expiration" %} {% trans "Reached auth level" %} {% trans "Used authentication methods" %} {% trans "Actions" %}
{{ trusted_device.name }} {{ trusted_device.expiration }} {{ trusted_device.auth_level }} {{ trusted_device.auth_with|translate|join:", " }} {% trans "Edit" %} / {% trans "Forget" %}
{% endblock %}