{% extends 'base.html.twig' %} {% block title %}Suivi des mails{% endblock %} {% block body %} {% include 'utils/file.ariane.html.twig' %} Les mails diffusés {{ form_start(form) }} {{ form_label(form.searchValue) }} {{ form_widget(form.searchValue) }} {{ form_end(form) }} {% if result.elements|length <= 0 %} Aucune mail trouvé {% else %} Objet de mail Date envoi {% for obj in result.elements %} {{ obj.objet }} {{ obj.dateCreation|date("d/m/Y H:i") }} {% if secure.havePermission(constant('_REMOVE_SERV_GEST_DIFF', app_const)) %} {% endif %} {% endfor %} {% endif %} {% include 'utils/pagination.html.twig' with {'url': '/mails'} %} {% endblock %}