k4ever/k4ever/buyable/templates/buyables/history.html

40 lines
740 B
HTML
Raw Normal View History

2011-03-04 23:35:28 +01:00
{% 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>
2011-03-04 23:35:28 +01:00
{% 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>
2011-03-04 23:35:28 +01:00
{% endfor %}
</table>
2011-03-04 23:35:28 +01:00
{% else %}
{{ error }}
Alle alle die Orders :(
{% endif %}
{% endblock %}