{% extends "base.html" %} {% block "content" %}

Zur Liste aller Items

{% if item %}
{{ item.name }}
Kategorie{{ item.buyableType.all.count|pluralize:"n"}}: {% for type in item.buyableType.all %} {{ type }}
{% endfor %}
Preis: {{ item.price|floatformat:2 }} € {% if item.hasDeposit %}(+ Pfand {{ item.deposit|floatformat:2 }} €) {% endif %}
"{{ item.description }}"
{% if item.hasDeposit %} Kaufen - {{ item.price|floatformat:2 }} €
+ {{ item.deposit|floatformat:2 }} € Pfand
{% else %}   {% endif %}
Kaufen - {{ item.price|floatformat:2 }} €
{% if item.hasDeposit %} (Ohne Pfand){% endif %}
{% if item.hasDeposit %} Kaufen
nur {{ item.deposit|floatformat:2 }} € Pfand
{% else %}   {% endif %}
{% else %} No item found :( {% endif %} {% endblock %}