{% extends "base.html" %} {%- block main -%} {{ input.label }} {{ input.description }} {% for grp in input.list %} {% if grp.label == "" %}{% for opt in grp.opts %} {% if opt.disabled %} {{ opt.label }} {% else %} {% if opt.selected %}✓{% endif %} {{opt.label}} {% endif %} {% endfor %}{% else %} {{ opt.label }} {% for opt in grp.opts %} {% if opt.disabled %} {{ opt.label }} {% else %} {% if opt.selected %}✓{% endif %} {{opt.label}} {% endif %} {% endfor %} {% endif %} {% endfor %} {%- endblock -%}