Merge branch 'issue719_filter_activities_version_2' into 'master'

Filter the list of activities

See merge request Chill-Projet/chill-bundles!563
This commit is contained in:
2023-07-12 16:11:10 +00:00
18 changed files with 967 additions and 162 deletions

View File

@@ -80,12 +80,15 @@
<div class="context-{{ context }}">
{{ filter|chill_render_filter_order_helper }}
{% if activities|length == 0 %}
<p class="chill-no-data-statement">
{{ "There isn't any activities."|trans }}
</p>
{% else %}
<div class="flex-table activity-list">
{% for activity in activities %}
{% include 'ChillActivityBundle:Activity:_list_item.html.twig' with {
@@ -96,4 +99,6 @@
</div>
{% endif %}
{{ chill_pagination(paginator) }}
</div>