{% extends "base.html" %}
{%- block main -%}<section>
<h2>{{ input.label }}</h2>
{{ input.description }}
<hr />
<nav><dl>{% for grp in input.list %}
{% if grp.label == "" %}{% for opt in grp.opts %}
{% if opt.disabled %}
<dt>{{ opt.label }}</dt>
{% else %}
<dt {% if opt.selected %}class="checked"{% endif %}>
{% if opt.selected %}✓{% endif %}
<a href="={{opt.value|xURI}}{{Q}}" title="{{opt.value}}">{{opt.label}}</a>
</dt>
{% endif %}
{% endfor %}{% else %}
<dt>{{ opt.label }}</dt>
{% for opt in grp.opts %}
{% if opt.disabled %}
<dd>{{ opt.label }}</dd>
{% else %}
<dd {% if opt.selected %}class="checked"{% endif %}>
{% if opt.selected %}✓{% endif %}
<a href="={{opt.value|xURI}}{{Q}}" title="{{opt.value}}">
{{opt.label}}</a>
</dd>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}</dl></nav>
</section>{%- endblock -%}