{% extends "webshop/base.html" %} {% block section_title %}Order{% endblock %} {% block content %} {% if order %}

Your order was submitted on: {{ order.date }}, current Status is: {{ order.status }}.

{% else %}

Orderdetails are not avalable.

{% endif %}

List of Items in your Order:

{% if order_position_list_zip %} {% for order_position, price, pos_price in order_position_list_zip %} {% endfor %}
POS. ART# NAME STOCK AMOUNT PRICE p.pce. POSITION PRICE
{{ order_position.id }} {{ order_position.article.id }} {{ order_position.article.name }} {{ order_position.article.stock }} {{ order_position.amount }} {{ price }} {{ currency_name }} {{ pos_price }} {{ currency_name }}
Total:
{{ total }} {{ currency_name }}

Thank you for Purchase.

{% else %}

This order is empty. Howcome?

{% endif %}

{{ message }}

{% endblock %}