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

Basket

{% if items %} {% for item in items %} {% endfor %}
Item description Item price
{{ item['description'] }} £{{ item['price'] }}
Total price: £{{ total_price }} Checkout
{% else %}

Your basket is empty.

{% endif %}
{% endblock %}