<tr class="cartitem cartitem-{{ item.product.id }}" data-id="{{ item.product.id }}">
<td class="infos-ctn">
<div class="item-infos">
<div class="img">
{% if item.product.picture %}
<a href="{{ path('product',{id:item.product.id,'url':item.product.url}) }}"><img src="{{ asset(item.product.picture.webPath) | imagine_filter('product_small') }}" width="100" height="100" alt="{{ item.product.name }}"></a>
{% elseif item.product.hasParent() and item.product.parent.picture %}
<a href="{{ path('product',{id:item.product.id,'url':item.product.url}) }}"><img src="{{ asset(item.product.parent.picture.webPath) | imagine_filter('product_small') }}" width="100" height="100" alt="{{ item.product.name }}"></a>
{% endif %}
</div>
<div class="infos">
{% if item.product.manufacturer %}
<a href="{{ path('manufacturer',{id:item.product.manufacturer.id,'url':item.product.manufacturer.url}) }}" class="manufacturer">{{ item.product.manufacturer.name }}</a>
{% endif %}
{% include 'front/catalog/product/view/soleil.html.twig' with {product:item.product} %}
<a href="{{ path('product',{id:item.product.id,'url':item.product.url}) }}">{{ item.product.name }}</a>
{% include 'front/catalog/product/view/stock.html.twig' with {product:item.product} %}
{% if item.product.ecoTax > 0 %}
<span class="eco-tax">{% trans %}Eco-participation : {% endtrans %} {{ item.product.ecoTax|price }}</span>
{% endif %}
{% if item.marketingRule %}
{% include 'front/catalog/product/view/discount.html.twig' with {discount:item.marketingRule} %}
{% elseif item.discountType %}
{% include 'front/catalog/product/view/discount-type.html.twig' with {discountType:item.discountType} %}
{% endif %}
</div>
</div>
</td>
<td class="qty-ctn">
{% if not item.product.isGift() %}
<div class="qty">
<a class="down">-</a>
<input type="text" value="{{ item.quantity }}" name="qty[{{ item.product.id }}]" class="qty-value" data-id="{{ item.product.id }}">
<a class="up">+</a>
</div>
{% endif %}
</td>
<td class="unit-price">
{{ item.product.getPrice(true, customerMgr.getPriceContext())|price }}
</td>
{# <td class="unit-price">
{% if item.unitPrice != item.product.price %}
<span class="unit-discount">
<span class="old-price">{{ item.product.price|price }}</span>
<span class="percent-discount">{{ item.percentDiscount|percent }}</span>
</span>
<span class="price reduced-price">{{ item.unitPrice|price }}</span>
{% else %}
<span class="price">{{ item.unitPrice|price }}</span>
{% endif %}
</td>#}
<td class="price-ctn">
{% if item.hasDiscount() %}
<span class="old-price">{{ item.normalPrice|price }}</span>
<span class="price reduced-price">{{ item.totalPrice|price }}</span>
{% else %}
<span class="old-price"></span>
<span class="price">{{ item.totalPrice|price }}</span>
{% endif %}
<a class="delete">{% trans %}X{% endtrans %}</a>
</td>
</tr>