|
{% if is_edit|default(false, true) == false %}
{% for attr in attributes %}
{{ attr.attribute_name }}
{% endfor %}
{% else %}
{% for cat_name, options in all_attributes.items() %}
{{ render_partial('partials/custom_select.html',
name='attribute_ids',
options=options,
multiple=true,
search=true,
placeholder='Select ' ~ cat_name
)}}
{% endfor %}
{% endif %}
|