Last updated
{% if select.value %}
<div class="avf-layout__select">
<div class="avf-layout__select-label">
{{ select.label }}
</div>
<div class="avf-layout__select-choice">
<div class="avf-layout__item">
<div>
Chosen option title:
</div>
<div>
{{ select.title }}
</div>
</div>
<div class="avf-layout__item">
<div>
Chosen option value:
</div>
<div>
{{ select.value }}
</div>
</div>
<div class="avf-layout__item">
<div>
All available choices:
</div>
<div>
{% for choice_value, choice_title in select.choices %}
<p>
{{ choice_value }} : {{ choice_title}}
</p>
{% endfor %}
</div>
</div>
</div>
</div>
{% endif %}