{% extends "layouts/base.html" %} {% load static %} {% block title %}Cart - SavvyGT{% endblock %} {% include 'partials/header.html' %} {% block content %}

Cart

{% if message %}
{{ message }}
{% elif error %}
{{ error }}
{% else %}
{% for product in products %} {% empty %} {% endfor %}
Product Price QTY Subtotal
{{ product.product.name|default:'Deleted Product' }}
{{ product.product.name|default:'Deleted Product'}}
${{product.product.price }} ${{ product.subtotal|floatformat:2 }}
Your cart is empty.
Cart totals
Subtotal $0.00
Total $0.00
{% endif %}
{% endblock %}