{% load static %}

Thanks for your order, {{ name }}! We're on it!
~ Myrel Pizza House

{{ order }}
{{ order.timestamp }} {% for item in order.items.all %} {% endfor %}
{{ item }} {% if item.toppings.all|length > 0 %}
    {% for topping in item.toppings.all %}
  • {{ topping }}
  • {% endfor %}
{% endif %}
{{ item.price }}
{{ order.total }}