templates/web/customer/items_list/product/center/table/body.twig line 1

Open in your IDE?
  1. {##
  2.  # Products list (table variant)
  3.  #}
  4. <div class="products responsive-wrapper">
  5.   {% if this.getPageData() %}
  6.     <table class="products-table" cellspacing="0">
  7.       <tr>
  8.         {{ widget_list('captions', type='inherited') }}
  9.       </tr>
  10.   
  11.       {% for product in this.getPageData() %}
  12.         {{ this.getProductWidgetContent(product)|raw }}
  13.       {% endfor %}
  14.   
  15.     </table>
  16.   {% endif %}
  17.   {{ widget_list('buttons', type='nested') }}
  18. </div>