Webshop
Startseite
Produkte
Warenkorb
Warenkorb
{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %} {% for item in cart_items %}
{{ item.name }}
{% if item.description %}
{{ item.description|slice(0, 100) }}...
{% endif %}
{{ item.price|number_format(2, ',', '.') }}€
{{ item.subtotal|number_format(2, ',', '.') }}€
{% endfor %} {% if cart_items|length == 0 %}
Ihr Warenkorb ist leer
Fügen Sie Produkte hinzu, um zu starten.
Zurück zu den Produkten
{% endif %}
Warenkorb Zusammenfassung
Zwischensumme:
{{ total|number_format(2, ',', '.') }}€
Versand:
Kostenlos
Gesamt:
{{ total|number_format(2, ',', '.') }}€
{% if cart_items|length > 0 %}
Zur Kasse
Warenkorb leeren
{% endif %}