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

CHECKOUT

{% endblock %} {% block content %}

Preview your Purchase:

Shipping Address:

{% if user_list %}

Salutation: {{ person.salutation }}

Firstname: {{ request.user.first_name }}

Lastname: {{ request.user.last_name }}

Street: {{ person.street_name }}

Streetnumber: {{ person.street_number }}

City: {{ person.city }}

{% else %}

Something whent wrong. Your User is incomplete.

{% endif %} {% if articles_list %}

Articles:

{% 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 }} {{ article.amount }} {{ article.article.price_in_chf }} {{ currency_name }} {{ article.position_price }} {{ currency_name }}
Total: {{ total }} {{ currency_name }}
{% else %}

Something whent wrong. Your cart is empty.

{% endif %}

{{ message }}

{% endblock %}