hide pagination if no periods

This commit is contained in:
Mathieu Jaumotte 2023-04-20 18:05:39 +02:00
parent a59e84b029
commit dde35be9c3

View File

@ -32,7 +32,9 @@
{% endfor %}
</div>
{{ chill_pagination(pagination) }}
{% if accompanyingPeriods|length > 0 %}
{{ chill_pagination(pagination) }}
{% endif %}
</div>