7 <h1>[% 'Select from one of the projects below' | $T8 %]</h1>
9 <form method=post action="[% script %]">
12 <tr class=listheading>
14 <th>[% 'Number' | $T8 %]</th>
15 <th>[% 'Description' | $T8 %]</th>
17 [%- FOREACH row IN project_list %]
18 <tr class=listrow[% loop.count % 2 %]>
19 <td>[% L.radio_button_tag('ndx', value=loop.count, checked=loop.first) %]</td>
20 <td>[% row.projectnumber | html %]</td>
21 <td>[% row.description | html %]</td>
22 [% L.hidden_tag('new_id_' _ loop.count, row.id) %]
23 [% L.hidden_tag('new_projectnumber_' _ loop.count, row.projectnumber) %]
30 [% L.hidden_tag(row.key, row.value) FOREACH row = hiddens %]
31 [% L.hidden_tag('lastndx', project_list.size) %]
32 [% L.hidden_tag('nextsub', 'project_selected') %]
33 [% L.hidden_tag('rownumber', rownumber) %]
34 [% L.submit_tag('action', LxERP.t8('Continue')) %]