{% extends "admin/base.html" %} {% block title %}Заказ {{ order.public_id }} — {{ app_name }}{% endblock %} {% block content %}

Заказ {{ order.public_id }}

{{ order.email }} · {{ order.status }} · {{ order.total | rub }}

{% if order.customer_note %}

Комментарий: {{ order.customer_note }}

{% endif %} {% for item in order.items %}

{{ item.title }} × {{ item.quantity }}

{{ item.unit_price | rub }}

{% if item.delivered_codes %}
{{ item.delivered_codes }}
{% endif %}
{% endfor %} ← К списку {% endblock %}