{% extends 'base.html.twig' %} {% block title %}Communications{% endblock %} {% block importmap %} {{ importmap(['app', 'module']) }} {% endblock %} {% block body %}

Communications

{% include '_index_search.html.twig' with {searchForm : searchForm} %}
{% for item in items %} {% set title = (item.contact ? item.contact.lastname ~ " " ~ item.contact.firstname ~ " - " : '') ~ "" ~ item.subject %} {% set title = '' ~ title ~ '' %} {% include '_index_module_item.html.twig' with { 'one' : title, 'two' : (item.communicationType ? item.communicationType.name : '') ~ " " ~ (item.dateProcess|datefr('l d F Y')) ~ " " ~ (item.dateProcess|datefr('H:i')), 'three' : (item.description), 'four' : '', } %} {% endfor %}
{% endblock %}