{% extends 'base.html.twig' %} {% block body %}
{# Breadcrumbs #}
{# Galerie images #}
{# Infos produit #}
{% if product.category %} {{ product.category.name }} {% endif %}

{{ product.title }}

{% if product.shortDescription %}

{{ product.shortDescription }}

{% endif %} {# Prix #}
{% if product.priceHT is not null %} {% if product.onSale %} {{ displayHT ? product.oldPriceHT|number_format(2, ',', ' ') : product.oldPriceTTC|number_format(2, ',', ' ') }} € {% endif %} {{ displayHT ? product.priceHT|number_format(2, ',', ' ') : product.priceTTC|number_format(2, ',', ' ') }} € {{ displayHT ? 'HT' : 'TTC' }} {% if displayHT %} soit {{ product.priceTTC|number_format(2, ',', ' ') }} € TTC {% else %} soit {{ product.priceHT|number_format(2, ',', ' ') }} € HT {% endif %} TVA {{ product.vatRate|number_format(0) }}% {% else %} Prix sur demande {% endif %}
{# Variantes #} {% if product.variants|length > 0 %}
{% for variant in product.variants %} {% if variant.active %} {% endif %} {% endfor %}
{% endif %} {# Disponibilite #}
{{ product.availability.label }}
{# CTAs : panier → booking → contact (on_request) → disabled #}
{% if product.bookingUrl %} {{ product.bookingLabel|default('Reserver') }} {% elseif product.availability.value == 'on_request' %} Demander un devis {% elseif product.availability.value == 'available' and product.priceHT is not null and site_context.hasModule('ecommerce') %}
{% if product.variants|length > 0 %} {% endif %}
{% elseif product.availability.value == 'available' %} Nous contacter {% else %} {% endif %}
{# Tags #} {% if product.tags|length > 0 %}
{% for tag in product.tags %} {{ tag.title }} {% endfor %}
{% endif %}
{# Description longue (TipTap) #} {% if product.content|trim is not empty %}

Description

{{ product.content|raw }}
{% endif %} {# Produits associes #} {% if relatedProducts|length > 0 %} {% endif %}
{# Lightbox (modale fullscreen pour zoom image) #} {% endblock %}