{% extends "bootstrap/base.html" %} {% import "bootstrap/utils.html" as utils %} {% block title %} Haldis - Order {{ order.id }} {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content -%} {{ utils.flashed_messages(container=True) }}

Ordered dishes: {{ order.items.count() }}

{% for key, value in order.group_by_dish().items() -%}

{{ value["count"] }} × {{ key }}

{% if value["comments"]|any -%}
    {% for comment in value["comments"] -%}
  • {% if comment %}{{ comment }} {% else %}No comment {% endif %}
  • {% endfor %}
{%- endif %}

{%- endfor %}
{%- endblock %}