101 lines
2.5 KiB
HTML
101 lines
2.5 KiB
HTML
{% extends "base.html" %}
|
|
{% load thumbnail %}
|
|
|
|
|
|
{% block "content" %}
|
|
{% if history %}
|
|
<div style="width:800px">
|
|
<h1>Frühere Einkäufe von {{ user }}</h1>
|
|
</div>
|
|
<div class="pagination" style="width:800px; text-align:center; margin-top:25px">
|
|
<table width="100%">
|
|
<tr>
|
|
<td width="33%">
|
|
{% if history.has_previous %}
|
|
<a href="?page={{ history.previous_page_number }}">Vorherige Seite</a>
|
|
{% else %}
|
|
{% endif %}
|
|
</td>
|
|
<td width="34%">
|
|
<span class="current">
|
|
Seite {{ history.number }} von {{ history.paginator.num_pages }}
|
|
</span>
|
|
</td>
|
|
<td width="34%">
|
|
{% if history.has_next %}
|
|
<a href="?page={{ history.next_page_number }}">Nächste Seite</a>
|
|
{% else %}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<table class="details">
|
|
<thead>
|
|
<tr>
|
|
<th>Buchung</th>
|
|
<th style="text-align:left">Einkauf</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Buchung</th>
|
|
<th style="text-align:left">Einkauf</th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
{% for order in history.object_list %}
|
|
<tr>
|
|
<td width="150px">
|
|
{{ order.dateTime|date:"Y-m-d H:i" }}
|
|
</td>
|
|
<td style="text-align:left">
|
|
<table>
|
|
<tr>
|
|
{% for item in order.purchase_set.all %}
|
|
<td width="80px">
|
|
{% if not item.isDeposit %}
|
|
<img src="{% thumbnail item.buyable.image 64x64 %}" width=64 height=64>
|
|
{% else %}
|
|
<b>{{ item.buyable.name }} Pfand</b>
|
|
{% endif %}
|
|
<br/>
|
|
zu {{ item.price|floatformat:2 }} €
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<div class="pagination" style="width:800px; text-align:center; margin-top:25px">
|
|
<table width="100%">
|
|
<tr>
|
|
<td width="33%">
|
|
{% if history.has_previous %}
|
|
<a href="?page={{ history.previous_page_number }}">Vorherige Seite</a>
|
|
{% else %}
|
|
{% endif %}
|
|
</td>
|
|
<td width="34%">
|
|
<span class="current">
|
|
Seite {{ history.number }} von {{ history.paginator.num_pages }}
|
|
</span>
|
|
</td>
|
|
<td width="34%">
|
|
{% if history.has_next %}
|
|
<a href="?page={{ history.next_page_number }}">Nächste Seite</a>
|
|
{% else %}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
{% else %}
|
|
{{ error }}
|
|
Es scheint so, als hättest du bisher noch nichts gekauft, {{ user }}.
|
|
{% endif %}
|
|
{% endblock %}
|