{% extends "members/registration/login.html" %} {% load i18n %} {% block login_form_url %} {% url 'members:django_otp.views.login' %} {% endblock %} {% block additional_fields %} {% if form.otp_device.field.choices %} {{ form.otp_device.label_tag }} {{ form.otp_device }} {{ form.otp_token.label_tag }} {{ form.otp_token }} {% if form.otp_token.errors %} {% for error in form.otp_token.errors %}{{ error|escape }}{% endfor %} {% endif %} {% else %} {% trans "This section needs you to authenticate with a token. As you have no token registered to your account, you cannot access this section. Please contact us." %} {% endif %} {% endblock %} {% block additional_inputs %} {% if form.otp_device.field.choices %} {% endif %} {% endblock %}