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 %}
status: {% if order.stoptime %}
{{ order.stoptime|countdown }}{% else %}open{% endif %}
total price: {{ total_price|euro }} {% if courier_or_admin %}- remaining debts: {{ debts|euro }}{% endif %}