Your Previous Orders

{% if orders %} {% for order in orders %}
Order Date: {{ order.order_date }}
{% for item in order.items %}
{{ item.name }}
{{ item.name }}
Add-ons: {{ item.addons }}
Instructions: {{ item.instructions }}
{{ item.price }}
{% endfor %}
{% endfor %} {% else %}

No previous orders found.

{% endif %} Back to Menu