{% load static %}

{{ product.name }}

SKU
{{ product.sku }}
Stock
{{ product.stock }}
Precio actual
{% if product.price %}{{ product.price.price_with_tax }} €{% else %}—{% endif %}

Imágenes

{% for image in images %}
{% empty %}

Este producto no tiene imágenes.

{% endfor %}

Variantes

{% for variant in variants %} {% empty %} {% endfor %}
SKUAtributosStockPrecio
{{ variant.sku }} {% for attribute_value in variant.attribute_values.all %}{{ attribute_value }}{% endfor %} {{ variant.stock }} {% if variant.price %}{{ variant.price.price_with_tax }} €{% else %}—{% endif %}
Este producto no tiene variantes.

Remesas

{% for batch in batches %} {% empty %} {% endfor %}
CódigoCantidadCaducidadProveedor
{{ batch.code }} {{ batch.quantity }} {{ batch.expiration_date|default:'—' }} {{ batch.provider|default:'—' }}
Este producto no tiene remesas.