{% extends CMS_TEMPLATE %} {% load i18n thumbnail cms_tags pcart_core %} {% block base_content %}

{% trans "Cart" %}

{% if cart.item_count > 0 %}
{% csrf_token %} {% for item in cart.items %}
{% with image=item.product.images.first %} {% if image %}{% endif %} {% endwith %}
× {{item.price|money}} = {{item.line_price|money}}
{% endfor %}

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

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

{% else %}

{% trans "It appears that your cart is currently empty!" %}

{% trans 'You can continue browsing here.' %}

{% endif %}
{% endblock %}