ffd0b865477b5def10b736ad6791fb36b8b4e1d8
[kivitendo-erp.git] / templates / webpages / arap / select_project.html
1 [%- USE HTML %]
2 [%- USE T8 %]
3 [%- USE L  %]
4 [%- USE LxERP %]
5
6 <h1>[% 'Select from one of the projects below' | $T8 %]</h1>
7
8 <form method=post action="[% script %]">
9
10 <table width=100%>
11  <tr class=listheading>
12   <th>&nbsp;</th>
13   <th>[% 'Number' | $T8 %]</th>
14   <th>[% 'Description' | $T8 %]</th>
15  </tr>
16 [%- FOREACH row IN project_list %]
17  <tr class=listrow[% loop.count % 2 %]>
18   <td>[% L.radio_button_tag('ndx', value=loop.count, checked=loop.first) %]</td>
19   <td>[% row.projectnumber | html %]</td>
20   <td>[% row.description | html %]</td>
21   [% L.hidden_tag('new_id_' _ loop.count, row.id) %]
22   [% L.hidden_tag('new_projectnumber_' _ loop.count, row.projectnumber) %]
23  </tr>
24 [%- END %]
25 </table>
26
27 <hr size=3 noshade>
28
29 [% L.hidden_tag(row.key, row.value) FOREACH row = hiddens %]
30 [% L.hidden_tag('lastndx', project_list.size) %]
31 [% L.hidden_tag('nextsub', 'project_selected') %]
32 [% L.hidden_tag('rownumber', rownumber) %]
33 [% L.submit_tag('action', LxERP.t8('Continue')) %]
34
35 </form>
36