{% load crispy_forms_field %} {% if field.is_hidden %} {{ field }} {% else %}
{% for error in field.errors %}

{{ error }}

{% endfor %} {% if field|is_checkbox %} {% crispy_field field %} {% endif %} {% if field.label %} {% endif %} {% if not field|is_checkbox %} {% crispy_field field %} {% endif %} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endif %}