{% macro radios( field, hint=None, disable=[], option_hints={}, hide_legend=False ) %}
{% if hide_legend %}{% endif %} {{ field.label.text|safe }} {% if hide_legend %}{% endif %} {% if field.errors %} {{ field.errors[0] }} {% endif %} {% for option in field %}
{% endfor %}
{% endmacro %} {% macro radio_select( field, hint=None, wrapping_class='form-group' ) %}
{{ field.label.text }} {% if field.errors %} {{ field.errors[0] }} {% endif %}
{% for option in field %}
{{ option }}
{% if loop.first %}
{% endif %} {% endfor %}
{% endmacro %} {% macro branding_radios( field, hint=None, branding_dict={}, show_header=True ) %}
{% if show_header %} {{ field.label.text }} {% endif %} {% if field.errors %} {{ field.errors[0] }} {% endif %} {% for value, option, checked in field.iter_choices() %}
{% endfor %}
{% endmacro %}