notification list: use bootstrap accordion to fold/unfold notification content

This commit is contained in:
2022-01-15 17:13:20 +01:00
parent 22022e5143
commit 120ce40dbe
3 changed files with 130 additions and 89 deletions

View File

@@ -46,10 +46,12 @@
<p class="chill-no-data-statement">{{ 'notification.Any notification sent'|trans }}</p>
{% endif %}
{% else %}
<div class="flex-table">
<div class="flex-table accordion accordion-flush" id="notification-fold">
{% for data in datas %}
{% set notification = data.notification %}
{% include 'ChillMainBundle:Notification:_list_item.html.twig' %}
{% include 'ChillMainBundle:Notification:_list_item.html.twig' with {
'fold_item': 'true'
} %}
{% endfor %}
</div>
{% endif %}