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

Cart

{% endblock %} {% block content %}

List of Items in your Shopping Cart:

{% if articles_list %} {% for position in cart_position_list %} {% endfor %}
POS. ART# NAME STOCK AMOUNT PRICE p.pce. POSITION PRICE
{{ position.id }} {{ position.article.id }} {{ position.article.name }} {{ position.article.stock }} {{ position.amount }} {{ position.article.price_in_chf }} {{ currency_name }} {{ position.position_price }} {{ currency_name }}
Total: {{ total }} {{ currency_name }}
{% else %}

There are currently no articles in your cart.

{% endif %} {% endblock %}