{% load aldryn_forms_tags i18n %} {% if field %}
{% block form_field_label %} {% if field.label %} {% endif %} {% endblock %} {% block form_field %} {% for choice in field.field.choices %}
{% endfor %} {% endblock form_field %} {% block form_field_errors %} {% if field.errors %}
{% for error in field.errors %} {{ error }} {% endfor %}
{% endif %} {% endblock form_field_errors %}
{% endif %}