select.tpl 566 B

1234567891011121314151617181920
  1. % from bottle import template
  2. % multiple = (get("multiple", False) and 'multiple="true"') or ""
  3. <div class="pure-u-1">
  4. % if defined("label"):
  5. % include('label', id=id, label=label)
  6. % end
  7. <select id="{{id}}" name="{{name}}" size="10" {{!multiple}} style="width: calc(100% - 1em); margin: 0 1em 1em">
  8. % if defined("hint"):
  9. % include('option', value=hint, disabled=True)
  10. % end
  11. % for child in children:
  12. % if "optgroup" in child and child["optgroup"] is None:
  13. % del child["optgroup"]
  14. % end
  15. {{!template('options', **child)}}
  16. % end
  17. </select>
  18. </div>