<select
  name="{{ name }}"
  id="{{ id }}"
  {% if multi %}
    multiple="multiple"
  {% endif %}
>

  {% for option in options %}
    <option
      value="{{ option.value }}"
      {% if option.selected %}
        selected="selected"
      {% endif %}
    >
      {{ option.label }}
    </option>
  {% endfor %}
</select>
