seitime-frappe/frappe/templates/includes/form_macros.html
2015-03-16 18:44:23 +05:30

11 lines
501 B
HTML

{% macro make_select(css_class=None, options=None, attributes=None) %}
<select class="form-control{% if css_class %} {{ css_class }}{% 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 %}