{% extends "shop/base.html" %} {% load i18n %} {% load satchmo_cart %} {% load satchmo_currency %} {% load satchmo_util %} {% load satchmo_product %} {% load satchmo_discounts %} {% load normalize_decimal %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Cart" %}
  • {% endblock %} {% block content %} {% if error_message %}
    {{ error_message }}
    {% endif %} {% if not cart|length %}

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

    {% else %}

    {% trans "Your Cart" %}

    {% if sale %} {% endif %} {% for cartitem in cart %} {% if sale %}{% endif %} {% cartitem_custom_details cartitem %} {% cartitem_subscription_details cartitem %} {% endfor %}
    {% trans "Quantity" %} {% trans "Item" %}{% trans "Regular Price" %} {% trans "Sale Price" %} {% else %} {% trans "Price" %}{% if default_view_tax %}{% trans "Total
    (incl. tax)" %}{% else %}{% trans "Total" %}{% endif %}
    {{ cartitem.description }}{{ cartitem.product.unit_price|currency }}{{ cartitem.product|discount_price:sale|currency }} {{ cartitem|discount_line_total:sale|currency }}
    {% trans "Cart Total" %}: {{ cart|discount_cart_total:sale|currency }}
    {% if sale %} {% include "product/some_discount_eligible.html" %} {% endif %} {% trans "Check out" %} {% endif %} {% endblock %}