{% extends '@InstallBois/index.html.twig' %} {% import "forms-macro/popup.html.twig" as macro %} {% import "popup/popup.html.twig" as popupTemplate %} {% block title %} INSTALL BOIS {% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block page_content_start %} {{ parent() }}

Paramètres | Administration des popups

{% endblock %} {% block page_content %} {% set colorByStatus = { 'Brouillon': '#E59EDD', 'En cours': '#92D050', 'En pause': 'red', 'Programmée': '#46B1E1', 'Finalisée': '#E97132', } %}
{% for key,popups in arrayPopups %}
Pop-ups {% if key === 'in-progress' %} en cours {% elseif key === 'incoming' %} à venir {% else %} passées {% endif %}
{% for popup in popups %} {% endfor %} {% endfor %}
{{ macro.popup("danger", "popup-delete", path('popup_delete', {'id': 'POPUPID'}), 'popup-delete') }} {% set popupSample = {id:'sample',title:'Sample',link:null,labelLink:null,text:'sample',image:null} %} {{ popupTemplate.popup(popupSample) }} {% endblock %}