{% load form_helpers %}
{{ override_field }}
{% if field|widget_type == 'checkboxinput' %}
{{ field }}
{% else %} {{ field }} {% if field.help_text %}{{ field.help_text|safe }}{% endif %} {% endif %} {% if field.errors %} {% for error in field.errors %} {# Embed an HTML comment indicating the error for extraction by tests #}
  • {{ error }}
  • {% endfor %} {% endif %}