5 <h1>[% LxERP.t8("Chart configuration overview regarding reports") %]</h1>
9 [% FOREACH data = DATA %]
11 [% UNLESS data.size == 1 %]
12 <div id="[% HTML.escape(data.type) %]" style="clear:left;float:none;" class="select-item control-panel">
13 [% LxERP.t8("Jump to") %]:
14 [% FOREACH jump = DATA %]
15 [% IF jump.type != data.type %] [% L.link("#" _ jump.type, jump.heading) %][% END %]
20 <h2 style="clear:left;">[% HTML.escape(data.heading) %]</h2>
22 [% FOREACH pos = data.positions %]
23 [% SET name = data.names.item(pos) %]
24 [% SET charts = data.charts.$pos %]
25 <table class="tbl-plain" style="clear:left;float:none;">
26 <caption>[% IF name %][% LxERP.t8("Position #1: #2", pos, name) %][% ELSE %][% LxERP.t8("Position #1", pos) %][% END %]</caption>
27 <colgroup><col class="wi-verysmall"><col class="wi-lightwide"></colgroup>
30 <th>[% LxERP.t8("Account") %]</th>
31 <th>[% LxERP.t8("Description") %]</th>
35 [% FOREACH chart = charts %]
37 <td>[% L.link("am.pl?action=edit_account&id=" _ chart.id, chart.accno) %]</td>
38 <td>[% HTML.escape(chart.description) %]</td>
47 </div><!-- /.wrapper -->