wagtail-2fa icon indicating copy to clipboard operation
wagtail-2fa copied to clipboard

Adjusting otp_form.html to work on Wagtail 6

Open helmantel opened this issue 1 year ago • 0 comments

The fields block in otp_form.html now needs to make use of the formattedfield template tag since the field template tag can no longer be used in Wagtail 6:

{% block fields %}
    {% formattedfield field=form.otp_token %}
    {% block extra_fields %}
        {% for field_name, field in form.extra_fields %}
            {% formattedfield field=field %}
        {% endfor %}
    {% endblock extra_fields %}
{% endblock %}

helmantel avatar Feb 28 '24 14:02 helmantel