{% load i18n %}{% if form.errors or form.non_field_errors %}
{% blocktrans count form.non_field_errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} {{ form.non_field_errors }}
{% endif %}{% for field in form %}
{{ field }} {% if field.help_text %} {% endif %} {% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}