{% extends "base.html" %} {% load static %} {% block title %}Cart ยท {{ SITE_NAME }}{% endblock %} {% block content %} {% include "public/_breadcrumbs.html" with title="Cart" %}
{% if lines %}
{% for line in lines %} {% endfor %}
Product name Price Quantity Total
${{ line.unit_price }}
{% csrf_token %} {% if line.color %}{% endif %}
${{ line.line_total }}
Total
${{ total }}
Checkout
{% else %}

Cart is empty.

Continue shopping

{% endif %}
{% endblock %}