{% extends '@App/app.html.twig' %} {% block title %}Planning mensuel{% endblock %} {% block page_header %}{% endblock %} {% block content %} {% set french_days = { 1: 'L', 2: 'M', 3: 'M', 4: 'J', 5: 'V', 6: 'S', 7: 'D' } %} {% set french_months = { 1: 'Janvier', 2: 'Février', 3: 'Mars', 4: 'Avril', 5: 'Mai', 6: 'Juin', 7: 'Juillet', 8: 'Août', 9: 'Septembre', 10: 'Octobre', 11: 'Novembre', 12: 'Décembre' } %} {% set current_query = app.request.query.all %} {% set month_label = french_months[calendar.start|date('n')] ~ ' ' ~ calendar.start|date('Y') %}