{% extends "base_beer.html" %} {% load static i18n %} {% block title %}{% trans "Track Order" %} #{{ order.id }}{% endblock %} {% block content %}

{% trans "Date Ordered" %}

{{ order.created_at|date:"d F Y, H:i" }}

{% trans "Current Status" %}

{{ order.get_status_display }}

{# Status Progress Bar / Icons #}
pending_actions
{% trans "Pending" %}
restaurant
{% trans "Preparing" %}
check_circle
{% trans "Made" %}
local_shipping
{% trans "Shipped" %}
done_all
{% trans "Done" %}
{% trans "Order Items" %}
{% for item in order.items.all %}
{{ item.quantity }}x {{ item.recipe.title }}
{% widthratio item.price 1 item.quantity %} €
{% endfor %}
{% trans "Total" %}
{{ order.total_price }} €

{% trans "Bookmark this page to track your order status." %}

{% endblock %}