{% extends base_template %} {% load i18n %} {% block content %}

{% trans "Recovery codes" %}

{% if codes %}

{% trans "Save these somewhere safe. Each code works once, and this is the only time they'll be shown." %}

{% for code in codes %}

{{ code }}

{% endfor %}
{% trans "Download" %} {% trans "Done" %}
{% else %}

{% trans "Your recovery codes were generated earlier and can't be shown again. If you've lost them, remove and re-add two-factor authentication to get a fresh set." %}

{% trans "Done" %}
{% endif %}
{% endblock %}