{% load i18n %} {% for item in cart.item_set.all %} {% endfor %}
{% trans 'Item' %} {% trans 'Price' %} {% trans 'Quantity' %} {% trans 'Subtotal' %}
{{ item }} {% if item.option %}
{{ item.option }}{% endif %}
{% if item.regular_price and item.regular_price != item.price %}{{ item.get_regular_price_display }}{% endif %} {{ item.get_price_display }} {{ item.quantity }} {% trans 'Remove' %} {{ item.get_subtotal_display }}