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

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

Статус: {{ order.status }} · {{ order.email }}

Сумма: {{ order.total | rub }}

{% for item in order.items %}

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

{{ item.unit_price | rub }} за шт.

{% if item.delivered_codes %}

Ваши коды

{{ item.delivered_codes }}
{% else %}

Коды ещё не выданы.

{% endif %}
{% endfor %}

Сохраните номер заказа — его можно открыть позже в разделе «Мой заказ».

На главную
{% endblock %}