{% extends 'backoffice/base.html' %} {% block title %}Pedido {{ object.code }}{% endblock %} {% block main %}
Dirección de envío: {{ object.shipping_address }}, {{ object.shipping_city }}, {{ object.shipping_zip }}
| Producto | Cantidad | Precio | Total |
|---|---|---|---|
| {{ line.product.name }} {% if line.variant %} {% for attribute_value in line.variant.attribute_values.all %}{{ attribute_value }}{% endfor %} {% endif %} | {{ line.quantity }} | {{ line.price }} € | {{ line.total }} € |
| Fecha | Importe | Método |
|---|---|---|
| {{ payment.creation_date }} | {{ payment.amount }} € | {{ payment.get_method_display }} |
| Sin pagos registrados. | ||