{% load currency_filters %}
{% if cart %}
{% for pid, item in cart.items %} {% endfor %}
Product Price Quantity Total Action
{% if item.image %} {{ item.name }} {% else %}
{% endif %}
{{ item.name }}
{% if item.has_discount %}
{{ currency_symbol }}{{ item.original_price|convert_currency:currency_rate|floatformat:2 }} {{ currency_symbol }}{{ item.price|convert_currency:currency_rate|floatformat:2 }} Save {{ currency_symbol }}{{ item.discount_amount|convert_currency:currency_rate|floatformat:2 }}
{% else %} {{ currency_symbol }}{{ item.price|convert_currency:currency_rate|floatformat:2 }} {% endif %}
{{ currency_symbol }}{{ item.line_total|convert_currency:currency_rate|floatformat:2 }}
{% if original_total and total_discount %}
Subtotal {{ currency_symbol }}{{ original_total|convert_currency:currency_rate|floatformat:2 }}
Discount -{{ currency_symbol }}{{ total_discount|convert_currency:currency_rate|floatformat:2 }}

{% endif %}
Total
{{ currency_symbol }}{{ total|convert_currency:currency_rate|floatformat:2 }}
Proceed to Checkout
{% else %}

Your cart is empty

Looks like you haven't added anything yet.

Start Shopping
{% endif %}