kivitendo/templates/webpages/ic/choice.html @ 72ad92fd
dfee9199 | Sven Schöling | [%- USE T8 %]
|
||
83e061c0 | Sven Schöling | [%- USE HTML %]
|
||
[%- USE LxERP %]
|
||||
<body>
|
||||
13a8363e | Moritz Bunkus | <form method="post" action="ic.pl">
|
||
83e061c0 | Sven Schöling | |||
13a8363e | Moritz Bunkus | [%- FOREACH row = HIDDENS %]
|
||
<input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
|
||||
[%- END %]
|
||||
83e061c0 | Sven Schöling | |||
13a8363e | Moritz Bunkus | <p>
|
||
<table>
|
||||
<tr class="listheading">
|
||||
dfee9199 | Sven Schöling | <th class="listheading" nowrap>[% 'Part Number' | $T8 %]</th>
|
||
<th class="listheading" nowrap>[% 'Part Description' | $T8 %]</th>
|
||||
13a8363e | Moritz Bunkus | </tr>
|
||
<tr valign="top">
|
||||
<td><input type="text" name="partnumber" size="20"></td>
|
||||
<td><input type="text" name="description" size="30"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
83e061c0 | Sven Schöling | |||
13a8363e | Moritz Bunkus | [%- FOREACH row = PARTS %]
|
||
<input type="hidden" name="totop100_partnumber_[% loop.count %]" value="[% row.totop100_partnumber %]">
|
||||
<input type="hidden" name="totop100_description_[% loop.count %]" value="[% row.totop100_description %]">
|
||||
<input type="hidden" name="totop100_unit_[% loop.count %]" value="[% row.totop100_unit %]">
|
||||
<input type="hidden" name="totop100_sellprice_[% loop.count %]" value="[% row.totop100_sellprice %]">
|
||||
<input type="hidden" name="totop100_soldtotal_[% loop.count %]" value="[% row.totop100_soldtotal %]">
|
||||
[%- END %]
|
||||
83e061c0 | Sven Schöling | |||
13a8363e | Moritz Bunkus | <p>
|
||
dfee9199 | Sven Schöling | <input class="submit" type="submit" name="action" value="[% 'list' | $T8 %]">
|
||
13a8363e | Moritz Bunkus | </p>
|
||
</form>
|
||||
83e061c0 | Sven Schöling | |||
13a8363e | Moritz Bunkus | </body>
|
||
</html>
|