{% for opt_section in data.all_options %}
{% if opt_section.help_video_url is not empty %} {% endif %} {{ opt_section.title }}
{% if ( opt_section.summary is defined ) and opt_section.summary|length %}
    {% for item in opt_section.summary %}
  • {{ item|raw }}
  • {% endfor %}
{% endif %}
{% if opt_section.warnings|length %} {% for section_warning in opt_section.warnings %}
{{ section_warning|raw }}
{% endfor %} {% endif %} {% if opt_section.notices|length %} {% for section_notice in opt_section.notices %}
{{ section_notice|raw }}
{% endfor %} {% endif %} {% for key, aOption in opt_section.options %}
{% if aOption.type is sameas('checkbox') %}
{% elseif aOption.type is sameas('text') %} {% elseif aOption.type is sameas('password') %} {% elseif aOption.type is sameas('email') %} {% elseif aOption.type is sameas('select') %} {% elseif aOption.type is sameas('multiple_select') %} {% elseif aOption.type is sameas('array') %} {% elseif aOption.type is sameas('comma_separated_lists') %} {% elseif aOption.type is sameas('noneditable_text') %} {% elseif aOption.type is sameas('integer') %} {% else %} ERROR: Should never reach this point. {% endif %} {% if aOption.type is not sameas('checkbox') %} {# checkboxes display slightly differently #}
{{ aOption.summary }}
{% endif %}
{{ aOption.description|raw }}
{% endfor %}
{% endfor %}