{% extends "base.html" %} {% block "content" %} {% if history %} {% for order in history.all %} {% endfor %}
Buchung Einkauf
Buchung Einkauf
{{ order.dateTime|date:"Y-m-d H:i" }}
    {% for item in order.purchase_set.all %}
  • {{ item.buyable.name }}{% if item.isDeposit %} Pfand{% endif %} zu {{ item.price|floatformat:2 }} €
  • {% endfor %}
{% else %} {{ error }} Alle alle die Orders :( {% endif %} {% endblock %}