Templates werden nicht mehr explizit übersetzt: *_master in * umbenannt
[kivitendo-erp.git] / templates / webpages / ic / choice.html
diff --git a/templates/webpages/ic/choice.html b/templates/webpages/ic/choice.html
new file mode 100644 (file)
index 0000000..eb62525
--- /dev/null
@@ -0,0 +1,39 @@
+[%- USE T8 %]
+[%- USE HTML %]
+[%- USE LxERP %]
+<body>
+
+ <form method="post" action="ic.pl">
+
+  [%- FOREACH row = HIDDENS %]
+  <input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" > 
+  [%- END %]
+
+  <p>
+   <table>
+    <tr class="listheading">
+     <th class="listheading" nowrap>[% 'Part Number' | $T8 %]</th>
+     <th class="listheading" nowrap>[% 'Part Description' | $T8 %]</th>
+    </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>
+
+  [%- 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 %]
+
+  <p>
+   <input class="submit" type="submit" name="action" value="[% 'list' | $T8 %]">
+  </p>
+ </form>
+
+</body>
+</html>