d6219e68957f71d89485a0f0164e7c896a25ef93
[kivitendo-erp.git] / templates / webpages / generic / new_item.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3
4     <h4 class="error">[% 'Item not on file!' | $T8 %]
5
6     <p>[% 'What type of item is this?' | $T8 %]</h4>
7
8     <form method="post" action="ic.pl">
9
10       <p>
11
12       <input class="radio" type="radio" name="item" value="part" checked>&nbsp;[% 'Part' | $T8 %]<br>
13       <input class="radio" type="radio" name="item" value="service">&nbsp;[% 'Service' | $T8 %]
14       <p>
15
16       [%- FOREACH var = HIDDENS %]
17       <input type="hidden" name="[% HTML.escape(var.name) %]" value="[% HTML.escape(var.value) %]">
18       [%- END %]
19
20       <input type="hidden" name="action" value="dispatcher">
21       <input class="submit" type="submit" name="action_add" value="[% 'Continue' | $T8 %]">
22       <input id='back_button' type='button' class="submit" value="[% 'Back' | $T8 %]">
23     </form>
24 <script type='text/javascript'>
25   $(function(){ $('#back_button').click(function(){ window.history.back(-1) }) })
26 </script>
27
28