Code

Just use the -n option from dh_installinit and the world is fine again.
[gosa.git] / trunk / gosa-plugins / goto / admin / devices / deviceGeneric.tpl
2 <h2>{t}Devices{/t}</h2>
4 <table width="100%" summary="">
5  <tr>
6   <td width="50%" style="vertical-align:top">
7     <table style="border-right:1px solid #B0B0B0;width:100%">
8         <tr>
9             <td><LABEL for="base">{t}Base{/t}</LABEL>
10             </td>
11             <td>
12 {render acl=$baseACL}
13                                 <select name="base">
14                                         {html_options options=$bases selected=$base}
15                                 </select>
16 {/render}
17             </td>
18         </tr>
19         <tr>
20             <td><LABEL for="cn">{t}Device name{/t}</LABEL>{$must}
21             </td>
22             <td>
23 {render acl=$cnACL}
24                 <input type="text" size=40 value="{$cn}" name="cn" id="cn">
25 {/render}
26             </td>
27         </tr>
28         <tr>
29             <td><LABEL for="description">{t}Description{/t}</LABEL>
30             </td>
31             <td>
32 {render acl=$descriptionACL}
33                 <input type="text" size=40 value="{$description}" name="description" id="description">
34 {/render}
35             </td>
36         </tr>
37         <tr>
38             <td><LABEL for="description">{t}Device type{/t}</LABEL>
39             </td>
40             <td>
41 {render acl=$typeACL}
42                                 <select id="type" size="1" name="type" title="{t}Choose the device type{/t}">
43                                         {html_options options=$types selected=$type}
44                                 </select>
45 {/render}
46             </td>
47         </tr>
48     </table>
49    </td>
50    <td style="vertical-align:top">
51     <table summary="">
52         <tr>
53             <td><LABEL for="devID">{t}Serial number{/t}&nbsp;{t}(iSerial){/t}</LABEL>{$must}
54             </td>
55             <td>
56 {render acl=$devIDACL}
57                 <input type="text" value="{$devID}" name="devID" id="devID">
58 {/render}
59             </td>
60             <td colspan="2">&nbsp;</td>
61         </tr>
62         <tr>
63             <td><LABEL for="vendor">{t}Vendor-ID{/t}&nbsp;{t}(idVendor){/t}</LABEL>{$must}
64             </td>
65             <td>
66 {render acl=$vendorACL}
67                 <input type="text" value="{$vendor}" name="vendor" id="vendor">
68 {/render}
69             </td>
70         </tr>
71         <tr>
72           <td><LABEL for="produkt">{t}Product-ID{/t}&nbsp;{t}(idProduct){/t}</LABEL>{$must}
73             </td>
74             <td>
75 {render acl=$serialACL}
76                 <input type="text" value="{$serial}" name="serial" id="serial">
77 {/render}
78             </td>
79         </tr>
80     </table>
81 </table>
82 <input type='hidden' value="1" name="deviceGeneric_posted">
83 <script language="JavaScript" type="text/javascript">
84   <!-- // First input field on page
85     focus_field('name');
86   -->
87 </script>