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

My basket

{% lorem %}

{% if cart %}
{% for item in cart.items.all %}
{% include "payments/cart_lineitem.html" with item=item %}
{% endfor %}
{% include "payments/cart_sidepanel.html" with cart=cart %}
{% else %}

Your cart is empty.

{% endif %}
{% endblock %}