f3fb66e7bf13e9fd69d046ad2e0ee228124441fa
[kivitendo-erp.git] / templates / webpages / arap / select_project.html
1 [%- USE HTML %]
2 [%- USE T8 %]
3 [%- USE L  %]
4 [%- USE LxERP %]
5 <body>
6
7 <h1>[% 'Select from one of the projects below' | $T8 %]</h1>
8
9 <form method=post action="[% script %]">
10
11 <table width=100%>
12  <tr class=listheading>
13   <th>&nbsp;</th>
14   <th>[% 'Number' | $T8 %]</th>
15   <th>[% 'Description' | $T8 %]</th>
16  </tr>
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) %]
24  </tr>
25 [%- END %]
26 </table>
27
28 <hr size=3 noshade>
29
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')) %]
35
36 </form>
37
38 </body>
39 </html>