You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{{ dropdown_question is not empty ? dropdown_question -}} |
|
<select name="{{ select_name }}"> |
|
{% for one_value, one_label in choices %} |
|
<option value="{{ one_value }}" |
|
{%- if selected_value == one_value %} selected="selected"{% endif %}> |
|
{{ one_label }} |
|
</option> |
|
{% endfor %} |
|
</select>
|
|
|