{% load i18n %}
{% trans 'Item' %} | {% trans 'Price' %} | {% trans 'Quantity' %} | {% trans 'Subtotal' %} | {% for item in cart.item_set.all %}
---|---|---|---|
{{ 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 }} |