Code

Updated device templates
[gosa.git] / gosa-plugins / goto / admin / devices / deviceGeneric.tpl
2 <h3>{t}Devices{/t}</h3>
4 <table width="100%" summary="">
5  <tr>
6   <td>
8     <table style='width:100%' class='right-border'>
10         <tr>
11             <td><LABEL for="base">{t}Base{/t}</LABEL>
12             </td>
13             <td>
14 {render acl=$baseACL}
15               {$base}
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>
52     <table summary="">
53         <tr>
54             <td><LABEL for="devID">{t}Serial number{/t}&nbsp;{t}(iSerial){/t}</LABEL>{$must}
55             </td>
56             <td>
57 {render acl=$devIDACL}
58                 <input type="text" value="{$devID}" name="devID" id="devID">
59 {/render}
60             </td>
61             <td colspan="2">&nbsp;</td>
62         </tr>
63         <tr>
64             <td><LABEL for="vendor">{t}Vendor-ID{/t}&nbsp;{t}(idVendor){/t}</LABEL>{$must}
65             </td>
66             <td>
67 {render acl=$vendorACL}
68                 <input type="text" value="{$vendor}" name="vendor" id="vendor">
69 {/render}
70             </td>
71         </tr>
72         <tr>
73           <td><LABEL for="produkt">{t}Product-ID{/t}&nbsp;{t}(idProduct){/t}</LABEL>{$must}
74             </td>
75             <td>
76 {render acl=$serialACL}
77                 <input type="text" value="{$serial}" name="serial" id="serial">
78 {/render}
79             </td>
80         </tr>
81     </table>
82 </table>
83 <input type='hidden' value="1" name="deviceGeneric_posted">
84 <script language="JavaScript" type="text/javascript">
85   <!-- // First input field on page
86     focus_field('name');
87   -->
88 </script>