{% extends 'store/main.html' %} {% load static %} {% block content %}
Warenkorb
weiter einkaufen

Gesamtmenge: {{order.get_cart_items}}
Gesamtsumme: € {{order.get_cart_total|floatformat:2}}
zur Kassa

Bezeichnung
Einzel Preis
Menge
Gesamtpreis
{% for item in items %}

{{item.product.name}}

€ {{ item.product.price|floatformat:2 }}

{{item.quantity}}

€ {{ item.get_total|floatformat:2 }}

{% endfor %}
{% endblock content %}