{% load i18n l10n staticfiles thumbnail pcart_core %} {% if cart.item_count > 0 %} {% for item in cart.items %} {% endfor %}
{% trans "Image" %} {% trans "Title" %} {% trans "Count" %} {% trans "Price" %} {% trans "Remove" %}
{% with image=item.product.images.first %} {% if image %}{% endif %} {% endwith %} {{item.object.title}} × {{item.price|money}} = {{item.line_price|money}}

{% trans "Subtotal" %}: {{cart.total_price|money}}

{% with total_weight=cart.total_weight %} {% if total_weight %}

{% trans "Weight" %}: {{total_weight|weight}}

{% endif %} {% endwith %}
{% endif %}

{{cart.items}}