{% extends "base_beer.html" %} {% load static i18n %} {% block title %}{% trans "Your Profile" %}{% endblock %} {% block content %}
| {% trans "Order Id" %} | {% trans "Recipe" %} | {% trans "Date" %} | {% trans "Status" %} | {% trans "Price" %} | {% trans "View" %} | {% trans "Track" %} |
|---|---|---|---|---|---|---|
| {{ order.id }} | {% with first_item=order.items.first %} {% if first_item %} {{ first_item.recipe.title }} {% if order.items.count > 1 %} (+{{ order.items.count|add:"-1" }}) {% endif %} {% else %} {% trans "No items" %} {% endif %} {% endwith %} | {{ order.created_at|date:"d/m/Y" }} | {{ order.get_status_display }} | {{ order.total_price }} € | visibility | track_changes |
{% trans "No previous orders found." %}