You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
740 B

13 years ago
{% extends "base.html" %}
{% block "content" %}
{% if history %}
<table>
<thead>
<tr>
<th>Buchung</th>
<th>Einkauf</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Buchung</th>
<th>Einkauf</th>
</tr>
</tfoot>
<tbody>
13 years ago
{% for order in history.all %}
<tr>
<td>{{ order.dateTime|date:"Y-m-d H:i" }}</td>
<td>
<ul>
{% for item in order.purchase_set.all %}
<li>
<strong>{{ item.buyable.name }}{% if item.isDeposit %} Pfand{% endif %}</strong>
zu {{ item.price|floatformat:2 }} €
</li>
{% endfor %}
</ul>
</td>
</tr>
13 years ago
{% endfor %}
</table>
13 years ago
{% else %}
{{ error }}
Alle alle die Orders :(
{% endif %}
{% endblock %}