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.
k4ever/k4ever/buyable/templates/buyables/itemBought.html

21 lines
498 B

{% extends "base.html" %}
{% block "content" %}
<p>
{% if not error %}
<h1>Danke für deinen Einkauf, {{ order.user }}.</h1>
Du hast soeben
{% for item in order.purchase_set.all %}
{{ item }}
{% endfor %} zum Gesamtpreis von {{ order.price|floatformat:2 }}€ gekauft.</a></p>
<p>
<a href="/store/">Noch mehr einkaufen!</a>
{% else %}
{{ error }}
<h1>Es ist ein Fehler aufgetreten.</h1>
</p>
<p><a href="/store/">Zurück zum Einkauf</a>
{% endif %}
</p>
{% endblock %}