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

List of Items in your Shopping Cart:

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

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

{% endif %}

{{ message }}

{% endblock %}