{% extends "base.html.jinja" %} {% block content %}
Einkauf abgeschickt: {{ order.transaction.timestamp | timestamp_de }}
{% endif %}| Artikel | Menge | Einzelpreis | Summe | |
|---|---|---|---|---|
|
{{ item.product.name }}
{{ item.description or '' }}
|
{% if is_cart %} {% else %} {{ item.quantity | format_number }}{% if item.product.unit_of_measure != 'piece' %} {{ item.product.unit_of_measure }}{% endif %} {% endif %} | {{ item.product.price | format_number }} € | {{ item.total_amount | format_number }} € | {% if is_cart %}Entfernen{% endif %} |
| Gesamtsumme | {{ order.total_amount | format_number }} € | |||