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

Open in your IDE?
  1. {##
  2.  # Products list item (table variant)
  3.  #}
  4. <tr class="product-cell {{ this.getProductCellClass() }}">
  5.   {% for column in this.getViewList(this.getInheritedListName('columns'), {'product': this.product}) %}
  6.     <td>
  7.       {{ widget_list('column.before', type='inherited', product=this.product) }}
  8.       {{ column.display() }}
  9.       {{ widget_list('column.after', type='inherited', product=this.product) }}
  10.     </td>
  11.   {% endfor %}
  12. </tr>