seitime-frappe/frappe/templates/includes/form_macros.html
2014-10-29 18:18:08 +05:30

11 lines
489 B
HTML

{% macro make_select(klass=None, options=None, attributes=None) %}
<select class="form-control{% if klass %} {{ klass }}{% endif %}" {% if attributes -%}
{% for key, value in attributes.iteritems() -%}
{{ key }}="{{ value }}" {% endfor %}{% endif %}>
{% if options -%}
{% for option in options -%}
<option value="{{ option.value if option is mapping else option }}">{{ _(option.label if option is mapping else option) }}</option>
{%- endfor %}
{%- endif %}
</select>
{% endmacro %}