{% extends "base.html" %} {% load i18n %} {% load two_factor_tags %} {% block content %}
{% blocktrans with primary=default_device|as_action %}Primary method: {{ primary }}{% endblocktrans %}
{% if available_phone_methods %}{% blocktrans trimmed %}If your primary method is not available, we are able to send backup tokens to the phone numbers listed below.{% endblocktrans %}
{% if backup_phones %}{% trans "Add Phone Number" %}
{% endif %}{% blocktrans trimmed %}If you don't have any device with you, you can access your account using backup tokens.{% endblocktrans %} {% blocktrans trimmed count counter=backup_tokens %} You have only one backup token remaining. {% plural %} You have {{ counter }} backup tokens remaining. {% endblocktrans %}
{% blocktrans trimmed %}However we strongly discourage you to do so, you can also disable two-factor authentication for your account.{% endblocktrans %}
{% trans "Disable Two-Factor Authentication" %}
{% else %}{% blocktrans trimmed %}Two-factor authentication is not enabled for your account. Enable two-factor authentication for enhanced account security.{% endblocktrans %}
{% endif %} {% endblock %}