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

{% trans "Date Ordered" %}

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

{% trans "Last Update" %}

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

{% trans "Item Details" %}
{{ order.recipe.title }}

{{ order.recipe.description|truncatewords:20 }}

{{ order.total_price }} €
{% if order.recipe.image %}
{{ order.recipe.title }} {% endif %}
{% trans "Total" %}
{{ order.total_price }} €
{% endblock %}