{% 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) }}

Haldis order {{ order.id }}

{% if not order.is_closed() %}
{{ order.stoptime|countdown }}
Refresh page when closed!
{% endif %} {% for dish_name, dish_quantity, dish_comment_groups in order.group_by_dish() -%}

{{ dish_quantity }} × {{ dish_name }}

{% if dish_comment_groups | map("first") | any -%} {%- endif %}

{%- endfor %}
Total {{ order.items.count() }} items — {{ total_price|euro }}
{%- endblock %}