{% extends "admin/change_form.html" %} {% load i18n %} {% block content %}
{% if form.form.errors %}

{% blocktrans count form.form.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

    {% for error in form.form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% csrf_token %} {{ wizard.management_form }} {{ wizard.form }}
{% if wizard.steps.prev %} {% endif %}
{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %}