{# bfx/select.html — Select dropdown macro #} {% macro select(name, options, label=none, selected=none, error=none, required=false, attrs={}) %} {% if label %}{{ label }}{% endif %} {% for opt in options %} {% if opt is mapping %} {{ opt.label }} {% else %} {{ opt }} {% endif %} {% endfor %} {% if error %}{{ error }}{% endif %} {% if label %}{% endif %} {% endmacro %}