{% extends 'theme/base.html' %} {% load static %} {% load i18n %} {% block main %} {% include 'components/generic/navbar.html' %}
{% if product.images.all|length > 1 %}
{% for image in product.images.all %} {{ product.name }} {{ forloop.counter }} {% endfor %}
{% endif %}

{{ product.name }}

{% if product.price %} {{ product.price.price_with_tax }} € {% elif product.min_variant_price %} {% translate 'Desde' %} {{ product.min_variant_price.price_with_tax }} € {% endif %}

{% if not product.has_variants %} {% if product.stock > 0 %} {% translate 'En stock' %} {% else %} {% translate 'Agotado' %} {% endif %} {% endif %}

{% if user.is_authenticated %}
{% endif %}
{% include 'components/cart/add_to_cart.html' %}

{{ product.description }}

{% endblock %}