938c0015aa1e32278abf389f00c2851f2c76a120
[kivitendo-erp.git] / templates / webpages / ic / choice.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4
5  <form method="post" action="ic.pl">
6
7   [%- FOREACH row = HIDDENS %]
8   <input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
9   [%- END %]
10
11   <p>
12    <table>
13     <tr class="listheading">
14      <th class="listheading" nowrap>[% 'Part Number' | $T8 %]</th>
15      <th class="listheading" nowrap>[% 'Part Description' | $T8 %]</th>
16     </tr>
17     <tr valign="top">
18      <td><input type="text" name="partnumber" size="20"></td>
19      <td><input type="text" name="description" size="30"></td>
20     </tr>
21    </table>
22   </p>
23
24   [%- FOREACH row = PARTS %]
25   <input type="hidden" name="totop100_partnumber_[% loop.count %]" value="[% row.totop100_partnumber %]">
26   <input type="hidden" name="totop100_description_[% loop.count %]" value="[% row.totop100_description %]">
27   <input type="hidden" name="totop100_unit_[% loop.count %]" value="[% row.totop100_unit %]">
28   <input type="hidden" name="totop100_sellprice_[% loop.count %]" value="[% row.totop100_sellprice %]">
29   <input type="hidden" name="totop100_soldtotal_[% loop.count %]" value="[% row.totop100_soldtotal %]">
30   [%- END %]
31
32   <p>
33    <input class="submit" type="submit" name="action" value="[% 'list' | $T8 %]">
34   </p>
35  </form>
36