{% extends "@ChillMain/layout.html.twig" %} {% block title 'notification.My own notifications'|trans %} {% block js %} {{ parent() }} {{ encore_entry_script_tags("mod_notification_toggle_read_status") }} {{ encore_entry_script_tags("mod_notification_toggle_read_all_status") }} {% endblock %} {% block css %} {{ parent() }} {{ encore_entry_link_tags("mod_notification_toggle_read_status") }} {{ encore_entry_link_tags("mod_notification_toggle_read_all_status") }} {% endblock %} {% block content %}

{{ block("title") }}

{% if datas|length == 0 %} {% if step == 'inbox' %}

{{ "notification.Any notification received" | trans }}

{% else %}

{{ "notification.Any notification sent" | trans }}

{% endif %} {% else %}
{% for data in datas %} {% set notification = data.notification %} {% include '@ChillMain/Notification/_list_item.html.twig' with { 'fold_item': true, 'notification_cc': data.template_data.notificationCc is defined ? data.template_data.notificationCc : false } %} {% endfor %}
{{ chill_pagination(paginator) }} {% endif %}
{% endblock content %}