<body> entfernt.
[kivitendo-erp.git] / templates / webpages / pe / search.html
1 [%- USE T8 %]
2 [%- USE LxERP %]
3
4 <form method=post action="[% script %]">
5
6 <input type=hidden name=sort value="[% is_pricegroup ? 'pricegroup' : 'partsgroup' %]">
7 <input type=hidden name=type value="[% type %]">
8
9 <table width=100%>
10   <tr>
11     <th class=listtop>[% is_pricegroup ? LxERP.t8('Pricegroup') : LxERP.t8('Groups') %]</th>
12   </tr>
13   <tr height="5"></tr>
14   <tr>
15     <td>
16       <table width=100%>
17         <tr>
18 [%- IF is_pricegroup %]
19           <th align=right width=1%>[% 'Pricegroup' | $T8 %]</th>
20           <td><input name=pricegroup size=20></td>
21 [%- ELSE %]
22           <th align=right width=1%>[% 'Group' | $T8 %]</th>
23           <td><input name=partsgroup size=20></td>
24 [%- END %]
25         </tr>
26         <tr>
27           <td></td>
28           <td><input name=status class=radio type=radio value=all checked> [% 'All' | $T8 %]
29               <input name=status class=radio type=radio value=orphaned> [% 'Orphaned' | $T8 %]</td>
30         </tr>
31       </table>
32     </td>
33   </tr>
34   <tr>
35     <td><hr size=3 noshade></td>
36   </tr>
37 </table>
38
39 <input type=hidden name=nextsub value="[% is_pricegroup ? 'pricegroup_report' : 'partsgroup_report' %]">
40
41 <br>
42 <input class=submit type=submit name=action value="[% 'Continue' | $T8 %]">
43 </form>
44
45