{% extends "base.html" %} {% load static %} {% block content %}
{% lorem %}
{% if cart %}Product | Price |
---|---|
{% include "payments/cart_lineitem.html" with item=item %} | £{{ item.product.price }} |
Total: | £{{ cart_total }} |
Your cart is empty.
{% endif %}