diff --git a/app/templates/order.html b/app/templates/order.html
index dc8e17f..43cfd1d 100644
--- a/app/templates/order.html
+++ b/app/templates/order.html
@@ -25,7 +25,9 @@
{% if order.location.telephone != None %}
telephone: {{ order.location.telephone }}
{% endif %}
- status: {% if order.stoptime %}{{ order.stoptime|countdown }}{% else %}open{% endif %}
+ {% if order.stoptime %}
+ closing time: {{ order.stoptime.strftime("%H:%M") }} ({{ order.stoptime|countdown }})
+ {% else %}open{% endif %}
total price: {{ total_price|euro }} {% if courier_or_admin %}- remaining debts: {{ debts|euro }}{% endif %}
{% if form -%}
diff --git a/app/templates/utils.html b/app/templates/utils.html
index e2e32ec..6e116ff 100644
--- a/app/templates/utils.html
+++ b/app/templates/utils.html
@@ -2,7 +2,10 @@
Status: {{ order.stoptime|countdown }}
+
+ {% if order.stoptime %}
+ Closing time: {{ order.stoptime.strftime("%H:%M") }} ({{ order.stoptime|countdown }})
+ {% else %}open{% endif %}
Orders: {{ order.items.count() }}
{{field.description|safe}}
{%- endif %} -{% endmacro %} \ No newline at end of file +{% endmacro %}