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.

18 lines
325 B

{% extends "base.html" %}
{% block "content" %}
{% if history %}
Your personal history
{% for order in history.all %}
{{ order }} <br />
{% for item in order.purchase_set.all %}
{{item }}
{% endfor %}
<br />
{% endfor %}
{% else %}
{{ error }}
Alle alle die Orders :(
{% endif %}
{% endblock %}