k4ever/k4ever/buyable/templates/buyables/itemBought.html

14 lines
247 B
HTML
Raw Normal View History

2010-10-19 01:03:38 +02:00
{% extends "base.html" %}
{% block "content" %}
{% if not error %}
2010-12-02 02:39:15 +01:00
You got the order {{ order }}
2010-12-02 12:54:34 +01:00
{% for item in order.purchase_set.all %}
2010-12-02 02:39:15 +01:00
{{ item }}
{% endfor %}
2010-10-19 01:03:38 +02:00
{% else %}
{{ error }}
Junge junge junge
{% endif %}
{% endblock %}