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

14 lines
243 B

{% extends "base.html" %}
{% block "content" %}
{% if not error %}
You got the order {{ order }}
{% for item in order.purchase.all %}
{{ item }}
{% endfor %}
{% else %}
{{ error }}
Junge junge junge
{% endif %}
{% endblock %}