{# Simple radio group form template #}
{% for opt in field.get_options() %} {% set value = opt.value if opt is mapping else opt %} {% set label = opt.label if opt is mapping else opt %} {% endfor %}
{% if has_error %}

{{ errors[field.get_key()] }}

{% elif field.get_help_text() %}

{{ field.get_help_text() }}

{% endif %}