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.

48 lines
1.3 KiB

{% extends "base.html" %}
{% load thumbnail %}
{% block "content" %}
<a href="/store/">Zur Liste aller Items</a>
{% if item %}
<div class="singleItem" >
<div class="productImage">
<img src="{% thumbnail item.image 400x400 %}">
</div>
<div class="productMeta">
<div>
<h2>{{ item.name }}</h2>
<h3>Kaufen</h3>
<div class="actions clearAfter">
<a class="button buy" href="/store/buy/{{ item.id }}/">
<span><span>{{ item.price|floatformat:2 }}€</span></span>
</a>
<a class="button buy inclDeposit" href="/store/buy/{{ item.id }}/with/deposit/">
<span><span>{{ item.price|floatformat:2 }}€ / {{ item.deposit|floatformat:2 }}€</span></span>
</a>
<a class="button buy onlyDeposit"
href="/store/buy/{{ item.id }}/only/deposit/">
<span><span>{{ item.deposit|floatformat:2 }}€</span></span>
</a>
</div>
<h3>Beschreibung</h3>
<div class="description">"{{ item.description }}"</div>
<h3>Kategorie{{ item.buyableType.all.count|pluralize:"n"}}</h3>
<ul>
{% for type in item.buyableType.all %}
<li>{{ type }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% else %}
Produkt wurde nicht gefunden
{% endif %}
{% endblock %}