Order {{ order.id }}
{% if order.can_close(current_user.id) -%}
Close
{% endif %}{% if courier_or_admin %}
Edit
{%- endif %}
courier: {{ order.courrier.username }}
{% if order.courrier == None and not current_user.is_anonymous() %}
Volunteer
{% endif %}
location:
{{ order.location.name }}
{% if order.location.telephone != None %}
telephone:
{{ order.location.telephone }}
{% endif %}
start: {{ order.starttime.strftime("%d/%m/%Y %H:%M") }}
{% 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 %}