mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-11 07:55:51 -06:00
20 lines
970 B
Twig
20 lines
970 B
Twig
<!-- Modal dialog to show incomes to an account -->
|
|
<div class="modal-dialog modal-lg" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{ 'close'|_ }}"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title"
|
|
id="incomeEntryTitle">{{ trans('firefly.income_entry', {name: account.name, start: start.formatLocalized(monthAndDayFormat), end: end.formatLocalized(monthAndDayFormat)}) }}</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
{% set hideBudget = true %}
|
|
{% set hideSource = true %}
|
|
{% set accountPerspective = account %}
|
|
{% include 'popup/list/journals-tasker' %}
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ 'close'|_ }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|