Code

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