{% extends 'base_admin.html.twig' %} {% block title %}{{ product.title }} - Options{% endblock %} {% block body %}

{{ product.title }}

← Retour à la manifestation

Détails du produit

Nom :
{{ product.title }}

Prix par défaut :
{{ product.price|number_format(2, ',', ' ') }} €

Max/utilisateur :
{{ product.maxQuantityPerUser ?? '—' }}

Stock total :
{{ product.totalAvailable ?? '—' }}

En vente :
{{ product.saleStart ? product.saleStart|date('d/m/Y H:i') : '—' }} → {{ product.saleEnd ? product.saleEnd|date('d/m/Y H:i') : '—' }}

Actif :
{{ product.enabled ? icon('valid', true) : icon('invalid', true) }}

Options proposées

Ajouter une option
{% if product.options|length > 0 %} {% for option in product.options %} {% endfor %}
Nom de l’option Quantité incluse Prix Active ? Actions
{{ option.label }} {{ option.quantity ?? '—' }} {{ option.price|number_format(2, ',', ' ') }} € {{ option.enabled ? icon('valid', true) : icon('invalid', true) }} {{ icon('edit', true) }}
{% else %}

Aucune option ajoutée pour ce produit.

{% endif %}
{% endblock %}