{% set currentPath = path( app.request.attributes.get('_route'), app.request.attributes.get('_route_params') ) %} {% set today = 'now'|date('m/d/Y') %} {% set todo = { '1': { title: 'First todo', priority: 'LOW', creation_date: 'now'|date('m/d/Y'), content: 'finir ce todo', author: 'hoho', end_date: '' }, '2': { title: 'Finir db', priority: 'HIGH', creation_date: 'now'|date('m/d/Y'), content: 'finir réécriture des tables de la db', author: 'vcapatina', end_date: '8/06/2020', }, '3': { title: 'Finir la page index des dossiers', priority: 'MEDIUM', creation_date: 'now'|date('m/d/Y'), content: '', author: 'amoriceau', end_date: '7/06/2020'}, } %} {% set notif = todo|length %}