{% load i18n static sekizai_tags %} {% addtoblock "js" %}{% endaddtoblock %} {% add_data "ng-requires" "djng.forms" %} {% block shop-cart-thead %} {% endblock shop-cart-thead %} {% block shop-cart-tbody %} {% for cart_item in cart.items %} {% endfor %} {% endblock shop-cart-tbody %} {% block shop-cart-tfoot %} {% for extra_row in cart.extra_rows %} {% include 'shop/cart/extra-row.html' with ng=0 %} {% endfor %} {% include 'shop/cart/extra-row.html' with ng=1 %} {% endblock shop-cart-tfoot %}
{% trans "Quantity" %} {% trans "Product" %} {% trans "Unit Price" %} {% trans "Total" %}
{{ cart_item.quantity }} {{ cart_item.summary.media }}

{{ cart_item.unit_price }}

{% for extra_row in cart_item.extra_rows %}
{{ extra_row.label }}
{% endfor %}

{{ cart_item.line_total }}

{% for extra_row in cart_item.extra_rows %}
{{ extra_row.amount }}
{% endfor %}
{% trans "Subtotal" %} {{ cart.subtotal }}

{% trans "Total" %}

{{ cart.total }}