{{ include('partials/page-title.html.twig', {pagetitle: '3Tek-Europe', title: 'Espace Abonné'}) }}
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
Votre Espace : {{ app.user.name|upper }} {{ app.user.lastname|capitalize }}
{% endif %}
{% if search is defined and search is not empty %}
{% endif %} {% if data | length == 0 %}
Aucun lot trouvé

{% if search is defined and search is not empty %} Aucun lot ne correspond à votre recherche "{{ search }}" {% else %} Aucun lot disponible pour le moment {% endif %}

Voir tous les lots
{% else %}
{% for item in data %}
{% if item.images | length > 0 %} {{item.name}} {% if item.quantite == 0 %}
RUPTURE DE STOCK
{% endif %} {% if item.images | length > 1 %} {{ item.images|length }} photos {% endif %} {% else %}

Aucune image

{% endif %}

Date d'entrée : {{ item.createdAt ? item.createdAt|date('d/m/Y H:i') : 'Date non disponible' }}

{{item.name|upper }}

{{item.description|safe_description(100) }}

{{ item.prix|number_format(2, ',', ' ') }} €
{% if item.statut == 'reserve' %} Réservé {% elseif item.statut == 'vendu' %} Vendu {% elseif item.commandesEnAttente is defined and item.commandesEnAttente > 0 %} Réservé (Commande en attente) {% else %} {% if item.quantite > 0 %} Stock: {{ item.quantite }} {% else %} Rupture de stock {% endif %} {% endif %}
{% if item.statut == 'disponible' and item.quantite > 0 and(item.commandesEnAttente is not defined or item.commandesEnAttente == 0) %} Voir et commander {% elseif item.statut == 'reserve' or (item.commandesEnAttente is defined and item.commandesEnAttente > 0) %} Rejoindre la file d'attente {% else %} Voir les détails {% endif %}
{% endfor %}