{% extends "@ChillMain/layout.html.twig" %} {% block content %}

{{ "Notifications list" | trans }}

{%for data in datas %} {% set notification = data.notification %}
{{ 'Message'|trans }}
{{ notification.message }}
{{ 'Date'|trans }}
{{ notification.date | date('long') }}
{{ 'Sender'|trans }}
{{ notification.sender }}
{{ 'Addressees'|trans }}
{{ notification.addressees |join(', ') }}
{{ 'Entity'|trans }}
{% include data.template with data.template_data %}
{% endfor %}
{% endblock content %}