{% extends 'admin/base.html.twig' %} {% block title %}Produits - Boutique{% endblock %} {% block breadcrumb %}Boutique Produits{% endblock %} {% block body %}

Produits

{% for message in app.flashes('success') %}
{{ message }}
{% endfor %}
{% if products is empty %}

Aucun produit pour le moment

Créer votre premier produit
{% else %}
{% for product in products %} {% endfor %}
Image Nom SKU Prix Stock Catégorie Statut Actions
{% if product.image %} {{ product.name }} {% else %}
{% endif %}
{{ product.name }} {% if product.type == 'digital' %} Numérique {% elseif product.type == 'service' %} Service {% endif %} {{ product.sku ?? '-' }} {{ product.formattedPrice }} {% if product.stock is null %} Illimité {% elseif product.stock == 0 %} Épuisé {% elseif product.stock < 10 %} {{ product.stock }} {% else %} {{ product.stock }} {% endif %} {{ product.category ? product.category.name : '-' }} {% if product.active %} Actif {% else %} Inactif {% endif %}
{% endif %}
{% endblock %}