3Tek 3Tek
{% if app.request.locale != 'en' %} user-image English {% endif %} {% if app.request.locale != 'es' %} user-image Spanish {% endif %} {% if app.request.locale != 'de' %} user-image German {% endif %} {% if app.request.locale != 'it' %} user-image Italian {% endif %} {% if app.request.locale != 'ru' %} user-image Russian {% endif %}
{% if app.user is defined and app.user %} {% set commandesEnAttente = app.user.commandes|filter(c => c.statut == 'en_attente') %} {% set commandesValidees = app.user.commandes|filter(c => c.statut == 'validee')|slice(0, 3) %} {% set totalNotifications = commandesEnAttente|length + commandesValidees|length %} {% else %} {% set commandesEnAttente = [] %} {% set commandesValidees = [] %} {% set totalNotifications = 0 %} {% endif %}
Notifications
Voir tout ({{ totalNotifications }})
{% if totalNotifications == 0 %}

Aucune notification

{% else %} {% for commande in commandesEnAttente %}
Commande en attente

{{ commande.lot.name }} - {{ commande.prixTotal|number_format(2, ',', ' ') }} €

{{ commande.createdAt|date('d/m/Y à H:i') }}

{% endfor %} {% for commande in commandesValidees %}
Commande validée

{{ commande.lot.name }} - {{ commande.prixTotal|number_format(2, ',', ' ') }} €

{{ commande.validatedAt|date('d/m/Y à H:i') }}

{% endfor %} {% endif %}
Voir toutes les commandes
{% if app.user is defined and app.user %}
Mon Profil Mes Commandes Mes Favoris
Déconnexion
{% endif %}