Child: [ddf08c] (diff)

Download this file

project_user_combo.html    6 lines (5 with data), 251 Bytes

1
2
3
4
5
<select id="{{id}}" name="{{name}}" class="project-user-combobox{{className and ' %s' % className or ''}}">
{% for o in options %}
<option{% if o.selected %} selected{% endif %} value="{{o.html_value}}">{{o.label|e}}</option>
{% endfor %}
</select>