{% load crispy_forms_field %} {% if field.is_hidden %} {{ field }} {% else %}
{% if field.label and form_show_labels %} {% endif %}
{% if crispy_prepended_text %}
{{ crispy_prepended_text }}
{% endif %} {% if field|is_select and use_custom_control %} {% if field.errors %} {% crispy_field field 'class' 'custom-select is-invalid' %} {% else %} {% crispy_field field 'class' 'custom-select' %} {% endif %} {% else %} {% if field.errors %} {% crispy_field field 'class' 'form-control is-invalid' %} {% else %} {% crispy_field field 'class' 'form-control' %} {% endif %} {% endif %} {% if crispy_appended_text %}
{{ crispy_appended_text }}
{% endif %} {% if error_text_inline %} {% include 'bootstrap4/layout/field_errors.html' %} {% else %} {% include 'bootstrap4/layout/field_errors_block.html' %} {% endif %}
{% if not help_text_inline %} {% include 'bootstrap4/layout/help_text.html' %} {% endif %}
{% endif %}