7 [%- INCLUDE 'common/flash.html' %]
9 <form name="Form" method="post" action="controller.pl" id="report_settings">
10 [% L.hidden_tag("action", "ListTransactions/report_settings") %]
12 <h2>[% "Account" | $T8 %]</h2>
14 [% P.chart.picker('chart_id', defaults.chart_id) %]
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) %]
21 <h2>[% "Options" | $T8 %]</h2>
23 [% L.checkbox_tag('show_subtotals', checked => defaults.show_subtotals,
24 label => LxERP.t8('Show subtotals')) %]
26 <h2>[% "Sort by" | $T8 %]</h2>
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')) %]