{% load i18n %} {% with recovery_device=devices.0 %}
{% csrf_token %}
{% if recovery_device %} {% trans 'Disable codes' %} {% endif %}

{{ plugin.name }}

{% trans 'If you lose your primary authentication device you can recover your account access with a recovery code.' %}

{% with tokens=recovery_device.token_set.all %} {% if tokens %} {% blocktrans with amount=tokens|length %}You have {{ amount }} codes available right now.{% endblocktrans %}

{% trans 'Note: If you generate new codes this will disable your current codes.' %} {% else %} {% trans 'You have no recovery codes available, do you want to generate some codes?' %} {% endif %} {% endwith %}

{% endwith %}