{% extends "base.html" %} {% block content %}

Cart

{% if lines %}
{% for row in lines %} {% endfor %}
Product Qty Unit price Subtotal
{% if row.product.thumbnail %} {{ row.product.title }} {% endif %} {{ row.product.title }}
{{ row.qty }} $ {{ row.product.price }} $ {{ row.line_total|floatformat:2 }}
Total $ {{ total|floatformat:2 }}

Order Summary

Items {{ lines|length }}
Total $ {{ total|floatformat:2 }}
Taxes and shipping calculated at checkout.
{% else %}
Your cart is empty.
Go to Store
{% endif %} {% endblock %}