{% extends 'base.html.twig' %} {% block body %} {% set currentMagasin = null %} {% for m in app.user.getMagasins() %} {% if m.id == app.session.get('magasin') %} {% set currentMagasin = m %} {% endif %} {% endfor %}
Aujourd'hui: {{ "now"|date('d/m/Y') }} {% if currentMagasin %} | Magasin actuel: {{ currentMagasin.titre }} {% if currentMagasin.description %} — {{ currentMagasin.description }}{% endif %} {% endif %}