{% if products %}
{% set product_row = 0 %} {% for product in products %} {% set product_row = product_row + 1 %} {% endfor %}
{{ column_image }} {{ column_name }} {{ column_model }} {{ column_stock }} {{ column_price }} {{ column_action }}
{% if product.thumb %}{{ product.name }}{% endif %} {{ product.name }}
{{ product.model }} {{ product.stock }} {% if product.price %}
{% if not product.special %} {{ product.price }} {% else %} {{ product.special }} {{ product.price }} {% endif %}
{% endif %}
{{ button_remove }}
{% else %}

{{ text_no_results }}

{% endif %}