{% for item in items %}
{{ item.product.name }}
    {% set description = item.optionsString() %} {% if description %}
  • {{ description|unescape }}
  • {% endif %}
{% if item.product.priceTiers.count %}

Bulk Pricing

{% for priceTier in item.product.priceTiers %} {% endfor %}
QtyPrice
{% if loop.last %} {{priceTier.quantity}}+ {% else %} {{ priceTier.quantity}} - {{item.product.priceTiers[loop.index].quantity - 1}} {% endif %} {{priceTier.price|currency}}/each
{% endif %}
{{ item.product.price|currency }}
{%if edit_cart %} {% else %} {{ item.quantity }} {% endif %}
{{ item.total()|currency }}
{%if edit_cart %} {% endif %}
{% endfor %}