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.
42 lines
1.5 KiB
42 lines
1.5 KiB
{% load thumbnail %} |
|
|
|
{% if buyables %} |
|
<table class="itemList"> |
|
<tbody> |
|
{% for buyable in buyables %} |
|
<tr> |
|
<td class="productImage"> |
|
<a href="{% url buyable_show buyable.id %}"><img src="{% thumbnail buyable.image 64x64 %}"/></a> |
|
</td> |
|
<td class="name"><a href="{% url buyable_show buyable.id %}">{{ buyable.name }}</a></td> |
|
<td class="actions" data-image="{% thumbnail buyable.image 48x48 %}" data-name="{{ buyable.name }}" data-id="{{ buyable.id }}"> |
|
{% if buyable.hasDeposit %} |
|
<a class="button buy" href="{% url buyable_buy buyable.id %}" |
|
title="Kaufen (Ohne Pfand)"> |
|
<span><span>{{ buyable.price|floatformat:2 }}€</span></span> |
|
</a> |
|
|
|
<a class="button buy inclDeposit" |
|
href="{% url buyable_buy buyable.id "with/deposit" %}" title="Kaufen (Mit Pfand)"> |
|
<span><span>{{ buyable.price|floatformat:2 }}€ / {{ buyable.deposit|floatformat:2 }}€</span></span> |
|
</a> |
|
|
|
<a class="button buy onlyDeposit" |
|
href="{% url buyable_buy buyable.id "only/deposit" %}" title="Kaufen (Nur Pfand)"> |
|
<span><span>{{ buyable.deposit|floatformat:2 }}€</span></span> |
|
</a> |
|
|
|
{% else %} |
|
<a class="button buy" href="{% url buyable_buy buyable.id %}" |
|
title="Kaufen"> |
|
<span><span>{{ buyable.price|floatformat:2 }}€</span></span> |
|
</a> |
|
{% endif %} |
|
</td> |
|
</tr> |
|
{% endfor %} |
|
</tbody> |
|
</table> |
|
{% else %} |
|
<p>{{ default|default_if_none:"Noch keine gekauft" }}</p> |
|
{% endif %}
|
|
|