{% set list = display_item_pulldown() %}
<span>表示件数:</span>
<div class="search-settings-box-select-wrap">
<select onChange="location.href=this.value;">
{% for option in list %}
<option value="{{ option.link }}" {% if option.selected %} selected {% endif %}>{{ option.label }}</option>
{% endfor %}
</select>
</div>