{% extends 'base.html' %} {% block title %}Cart{% endblock %} {% block main %}

Your Cart


{% if cart|length == 0 %}

Your cart is empty.


{% else %}

Total {{ cart|length }} item(s) in cart


{% for product in cart %}

{{ product["pname"] }}

By {{ product["sname"] }}

{{ product["product_description"][:150] }} ...

Quantity: {{ product["quantity"] }}

Total: $ {{ product["total"] }}

{% endfor %}

Total: $ {{ total }}


{% endif %} {% endblock %}