{% load crispy_forms_field %} {% if field.is_hidden %} {{ field }} {% else %}
{% if field.label and form_show_labels %}
{{ field.label|safe }}{% if field.field.required %}
*
{% endif %}
{% endif %}
{% if crispy_prepended_text %}
{{ crispy_prepended_text|safe }}
{% endif %} {% crispy_field field %} {% if crispy_appended_text %}
{{ crispy_appended_text|safe }}
{% endif %}
{% include 'bootstrap3/layout/help_text_and_errors.html' %}
{% endif %}