]> wagnertech.de Git - mfinanz.git/blob - templates/webpages/list_transactions/report_settings.html
date error in mapping
[mfinanz.git] / templates / webpages / list_transactions / report_settings.html
1 [%- USE HTML %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE P %]
5 [%- USE T8 %]
6
7 [%- INCLUDE 'common/flash.html' %]
8
9 <form name="Form" method="post" action="controller.pl" id="report_settings">
10 [% L.hidden_tag("action", "ListTransactions/report_settings") %]
11
12 <h2>[% "Account" | $T8 %]</h2>
13
14 [% P.chart.picker('chart_id', defaults.chart_id) %]
15
16 <h2>[% "Period" | $T8 %]</h2>
17 [% P.date_period.picker('dateperiod', defaults.dateperiod_from_date,
18                                       defaults.dateperiod_to_date,
19                                       dialog_defaults => defaults.dialog) %]
20
21 <h2>[% "Options" | $T8 %]</h2>
22
23 [% L.checkbox_tag('show_subtotals', checked => defaults.show_subtotals,
24                                     label => LxERP.t8('Show subtotals')) %]
25
26 <h2>[% "Sort by" | $T8 %]</h2>
27
28 [% P.radio_button_tag('sort', value => 'transdate',
29                               checked => defaults.sort == 'transdate',
30                               label => LxERP.t8('Date')) %]
31 [% P.radio_button_tag('sort', value => 'reference',
32                               checked => defaults.sort == 'reference',
33                               label => LxERP.t8('Reference')) %]
34 [% P.radio_button_tag('sort', value => 'description',
35                               checked => defaults.sort == 'description',
36                               label => LxERP.t8('Description')) %]
37
38 </form>
39
40 <hr>