{% extends 'bootstrap_base.html' %} {% from 'bootstrap/form.html' import render_field %} {% from 'bootstrap/form.html' import render_form %} {% block header %}

Notification

{% endblock %} {% block content %} {% macro _hz_form_wrap(horizontal_columns, form_type, add_group=False, required=False) %} {% if form_type == "horizontal" %} {% if add_group %}
{% endif %}
{% endif %} {{ caller() }} {% endmacro %} {% macro render_radio_field(field, form_type="basic", horizontal_columns=('lg', 2, 10), button_map={}, button_style='', button_size='') %} {% if field.flags.required and not required in kwargs %} {% set kwargs = dict(required=True, **kwargs) %} {% endif %} {% set extra_classes = ' ' + field.render_kw.class if field.render_kw.class else '' %}
{{ field.label(class="form-control-label")|safe }} {#% call _hz_form_wrap(horizontal_columns, form_type, True, required=required) %#} {% for item in field -%} {{ item(class_="form-check-input")|safe }} {% endfor %} {#% endcall %#} {%- if field.errors %} {%- for error in field.errors %}
{{ error }}
{%- endfor %} {%- elif field.description -%} {{ field.description|safe }} {%- endif %}
{% endmacro %}

System Info

{{analogy_str | safe}}

{{form.hidden_tag()}} {{ render_radio_field(form.answer_1) }} {{ render_radio_field(form.answer_2) }} {{ render_radio_field(form.answer_3) }}
Statements Completely unfamiliar Largely unfamiliar Slightly unfamiliar Slightly familiar Largely familiar Completely familiar
Statements Completely distrust Largely distrust Slightly distrust Slightly trust Largely trust Completely trust
Statements Completely inconfident Largely inconfident Slightly inconfident Slightly confident Largely confident Completely confident
{% endblock %} {% block extra_scripts %} {% endblock %}