mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
12 lines
449 B
Twig
12 lines
449 B
Twig
<p class="search_count">
|
|
{% if true == hasPages %}
|
|
{{ trans('firefly.search_found_more_transactions', {count: groups.count(), time: searchTime}) }}
|
|
{% elseif 0 == groups.count() %}
|
|
{{ trans_choice('firefly.search_found_transactions', 0, {time: searchTime}) }}
|
|
{% else %}
|
|
{{ trans_choice('firefly.search_found_transactions', groups.count(), {time: searchTime}) }}
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% include 'list.groups' %}
|