1 [%- USE L %][% USE LxERP %]
2 <form method="post" id="form" action="controller.pl">
3 [% L.hidden_tag('action', 'FinancialOverview/list') %]
4 <a href="[% SELF.url_for(action='list', year=(SELF.year - 1), subtotals_per_quarter=SELF.subtotals_per_quarter, salesman_id=SELF.salesman_id) %]">« [%- LxERP.t8("Prior year") %]: [% SELF.year - 1 %]</a>
7 [% LxERP.t8("Current year") %]:
8 [% L.select_tag('year', YEARS_TO_LIST, default=SELF.year, onchange='$("#form").submit();') %]
10 [% IF SELF.year < (SELF.current_year + 5) %]
12 <a href="[% SELF.url_for(action='list', year=(SELF.year + 1), subtotals_per_quarter=SELF.subtotals_per_quarter, salesman_id=SELF.salesman_id) %]">[%- LxERP.t8("Following year") %]: [% SELF.year + 1 %] »</a>
16 [% L.checkbox_tag('subtotals_per_quarter', checked=SELF.subtotals_per_quarter, label=LxERP.t8('Subtotals per quarter'), onchange='$("#form").submit();') %]
19 [% LxERP.t8("Salesperson") %]:
20 [% L.select_tag('salesman_id', SELF.employees, with_empty=1, title_key='name', onchange='$("#form").submit();', default=SELF.salesman_id) %]</p>