Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Theme override for a select element. Chris@0: * Chris@0: * Available variables: Chris@0: * - attributes: HTML attributes for the select tag. Chris@0: * - options: The option element children. Chris@0: * Chris@0: * @see template_preprocess_select() Chris@0: */ Chris@0: #} Chris@0: {% spaceless %} Chris@0: Chris@0: {% for option in options %} Chris@0: {% if option.type == 'optgroup' %} Chris@0: Chris@0: {% for sub_option in option.options %} Chris@0: Chris@0: {% endfor %} Chris@0: Chris@0: {% elseif option.type == 'option' %} Chris@0: Chris@0: {% endif %} Chris@0: {% endfor %} Chris@0: Chris@0: {% endspaceless %}