vendor/shopware/storefront/Resources/views/storefront/component/listing/filter/filter-multi-select-list-item.html.twig line 1

Open in your IDE?
  1. {% block component_filter_multi_select_list_item %}
  2.     <div class="{{ formCheckboxWrapperClass }}">
  3.         {% set id = element.id %}
  4.         {% set name = element.translated.name %}
  5.         {% block component_filter_multi_select_list_item_checkbox_input %}
  6.             <input type="checkbox"
  7.                    class="{{ formCheckInputClass }} filter-multi-select-checkbox"
  8.                    data-label="{{ name }}"
  9.                    value="{{ id }}"
  10.                    id="{{ id }}">
  11.         {% endblock %}
  12.         {% block component_filter_multi_select_list_item_label_element %}
  13.             <label class="filter-multi-select-item-label {{ formCheckLabelClass }}" for="{{ id }}">
  14.                 {% block component_multi_select_list_item_label %}
  15.                     {{ name }}
  16.                 {% endblock %}
  17.             </label>
  18.         {% endblock %}
  19.     </div>
  20. {% endblock %}