{% if __SELF__.currentItem.items.count < 1 %} {% partial __SELF__ ~ '::empty' %} {% else %} {% set items = __SELF__.currentItem.items %} {% set totals = __SELF__.currentItem.totals %}
{% partial 'cart::table/header' %} {% for product in __SELF__.currentItem.items %} {% partial 'cart::table/entry' product=product %} {% endfor %} {% partial 'cart::table/total' totals=totals %} {% if __SELF__.showShipping %} {% partial __SELF__ ~ '::shipping' shipping=totals.shippingTotal %} {% partial 'cart::table/grandtotal' totals=totals %} {% endif %} {% partial 'cart::table/taxes' totals=totals %}
{% endif %}