mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 14:12:15 +00:00
Fix #2564
This commit is contained in:
@@ -101,7 +101,7 @@
|
||||
{# destination account name for withdrawals #}
|
||||
{#{{ ExpandedForm.text('destination_name', null, {label: trans('form.expense_account')}) }} #}
|
||||
|
||||
{# for withdrawals, also a drop down with expense accounts, loans, debts, mortgages or (cash). #}
|
||||
{# NEW for withdrawals, also a drop down with expense accounts, loans, debts, mortgages or (cash). #}
|
||||
{{ AccountForm.activeWithdrawalDestinations('withdrawal_destination_id', null, {label: trans('form.withdrawal_destination_id')}) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -121,7 +121,8 @@
|
||||
var edit_bulk_selected_txt = "{{ trans('firefly.bulk_edit')|escape('js') }}";
|
||||
|
||||
var searchQuery = "{{ fullQuery|escape('js') }}";
|
||||
var searchUri = "{{ route('search.search') }}";
|
||||
var searchUri = "{{ route('search.search') }}?page={{ page }}";
|
||||
var searchPage = {{ page }};
|
||||
</script>
|
||||
{# required for groups.twig #}
|
||||
<script type="text/javascript" src="v1/js/ff/list/groups.js?v={{ FF_VERSION }}"></script>
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
<p>
|
||||
<p class="search_count">
|
||||
{{ trans('firefly.search_found_transactions', {count: groups.count, time: searchTime}) }}
|
||||
{% if hasPages %}
|
||||
{{ trans('firefly.search_found_transactions', {count: '>'~groups.perPage, time: searchTime}) }}
|
||||
{% else %}
|
||||
{{ trans('firefly.search_found_transactions', {count: groups.count, time: searchTime}) }}
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
{% include 'list.groups' %}
|
||||
|
||||
Reference in New Issue
Block a user