{% extends "webshop/base.html" %} {% block section_title %}Cart{% endblock %} {% block content %}

List of Items in your Shopping Cart:

{% if cart_position_list_zip %} {% for cart_position, amount_form in cart_position_list_zip %} {% endfor %}
POS. ART# NAME STOCK AMOUNT PRICE p.pce. POSITION PRICE
{{ cart_position.id }} {{ cart_position.article.id }} {{ cart_position.article.name }} {{ cart_position.article.stock }}
{{ amount_form.as_p }} {% csrf_token %}
{{ cart_position.article.price_in_chf }} {{ currency_name }} {{ cart_position.position_price }} {{ currency_name }}
Total:
{{ total }} {{ currency_name }}
CHECKOUT {% else %}

This cart seams to lack some Items. Go get some in the store!

{% endif %}

{{ message }}

{% endblock %}