{# Example template for the shopping cart, override in your own template directory #} {% extends 'site.tmpl' %} {% block content %} {% for item in items %} {% endfor %}
Aantal Product Prijs per stuk Subtotaal
Verwijderen Meer Minder {{ item.quantity }}x {{ item.content_object }} {{ item.unit_price }} {{ item.total_price }}
 

{{ item.content_object.description }}

Totaal {{ cart.total_price }}
{% endblock %}