Mes Files d'Attente

{% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %} {% if files is empty %}
Aucune file d'attente

Vous n'êtes actuellement dans aucune file d'attente.

Parcourir les lots
{% else %}
{% for file in files %}
{{ file.lot.name }}
Position {{ file.position }}
{{ file.lot.name }}
{{ file.lot.prix|number_format(2, ',', ' ') }} €
Catégorie: {{ file.lot.cat.name }}
Statut du lot: {{ file.lot.statut|title }}
{% if file.lot.reservePar %}
Réservé par: {% if file.lot.reservePar.id == app.user.id %} Vous {% else %} Un autre utilisateur {% endif %}
{% endif %}
Rejoint le: {{ file.createdAt|date('d/m/Y H:i') }}
{% endfor %}
{% endif %}
{{ include('partials/footer.html.twig') }}