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

Kassa Information:


{% csrf_token %}

zurück zur Bestellübersicht

Bestellzusammenfassung

Bestellnummer: {{order.id}}

{% for item in items %}

{{item.product.article_number}}

{{item.product.name}}

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

x {{item.quantity}}

{% endfor %}
Gesamtmenge: {{order.get_cart_items}}
Gesamtsumme: € {{order.get_cart_total|floatformat:2}}
{% endblock content %}