-
Orders
+
Items
{% for item in order.items %}
{{ item.get_name() }} - {{ item.product.name }} - {{ item.product.price|euro }}
{% if item.can_delete(order.id, current_user.id, session.get('anon_name', '')) -%}
{%- endif %}
diff --git a/app/templates/utils.html b/app/templates/utils.html
index 98ce6a4..6d70c07 100644
--- a/app/templates/utils.html
+++ b/app/templates/utils.html
@@ -6,7 +6,7 @@
Orders: {{ order.items.count() }}