{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content_title %}{% trans "Authenticator setup" %}{% endblock %} {% block content %}
{{ media }}

{% trans "Generate a secret, scan the QR code with your authenticator app, then confirm a one-time code." %}

{% csrf_token %} {% if device %} {% endif %}

{% trans "Device details" %}

{{ setup_form.non_field_errors }}
{{ setup_form.user.label_tag }} {{ setup_form.user }}
{% for error in setup_form.user.errors %}

{{ error }}

{% endfor %}
{{ setup_form.name.label_tag }} {{ setup_form.name }}
{% for error in setup_form.name.errors %}

{{ error }}

{% endfor %}
{% if device %} {% endif %}
{% if device %}
{% if qr_data_uri %} {% trans 'TOTP QR code' %} {% endif %} {% if manual_key %}

{% trans "Manual key" %}: {{ manual_key }}

{% endif %}

{% trans "Scan the QR code or enter the key in your authenticator app." %}

{% csrf_token %}

{% trans "Confirm code" %}

{{ confirm_form.non_field_errors }}
{{ confirm_form.token.label_tag }} {{ confirm_form.token }}
{% for error in confirm_form.token.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% endblock %}