{% extends "base.html" %} {% load shop_tags i18n %} {% block title %}{% trans "Your cart" %}{% endblock %} {% block breadcrumb_menu %}
{% endblock %} {% block main %} {% if cart.has_items %} {% for item in cart %} {% endfor %}
{% trans "Item" %} {% trans "Unit Price" %} {% trans "Qty" %} {% trans "Price" %}  
{% if item.image %} {{ item.description }} {% endif %} {{ item.description }} {{ item.unit_price|currency }} {{ item.quantity }} {{ item.total_price|currency }}
{% csrf_token %}
{% trans "Total" %} {{ cart.total_price|currency }}  
{% else %}

{% trans "Your cart is empty." %}

{% endif %} {% endblock %}