{% if field.label and form_show_labels %}{% endif %}
{% for choice in field.field.choices %}
{% endfor %}
{% if form_show_errors and field.errors %}
{% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% endif %}
{% if not field|is_checkbox and not field|is_radioselect %}
{% if field.label and form_show_labels %}{% endif %}
{% crispy_field field %}
{% if form_show_errors and field.errors %}
{% for error in field.errors %}