Code

Added gotoMode to server generic tab
[gosa.git] / plugins / admin / systems / server.tpl
1 <table summary="" width="100%">
2  <tr>
3   <td style="vertical-align:top; width:50%;">
4         <table summary="">
5          <tr>
6           <td><LABEL for="cn">{t}Server name{/t}</LABEL>{$must}</td>
7           <td><input name="cn" id="cn" size=20 maxlength=60 value="{$cn}"></td>
8          </tr>
9          <tr>
10           <td><LABEL for="base">{t}Base{/t}</LABEL>{$must}</td>
11           <td>
12            <select size="1" name="base" id="base" title="{t}Choose subtree to place terminal in{/t}">
13             {html_options options=$bases selected=$base_select}
14            </select>
15                 <input type="image" name="chooseBase" src="images/folder.png" class="center" title="{t}Select a base{/t}">
16           </tr>
17         </table>
18   </td>
19   <td style="vertical-align:top">
20         <table summary="">
21         <tr>
22      <td>{t}Mode{/t}</td>
23      <td>
24       <select name="gotoMode" title="{t}Select terminal mode{/t}" {$gotoModeACL}>
25        {html_options options=$modes selected=$gotoMode}
26       </select>
27      </td>
28     </tr>
29  
30          <tr>
31           <td><LABEL for="description">{t}Description{/t}</LABEL></td>
32           <td><input name="description" id="description" size=25 maxlength=80 value="{$description}"></td>
33          </tr>
34         </table>
35   </td>
36  </tr>
37 </table>
39 <p class="plugbottom" style="margin-bottom:0px; padding:0px;">&nbsp;</p>
41 {$netconfig}
43 <p class="plugbottom" style="margin-bottom:0px; padding:0px;">&nbsp;</p>
45 <h2><img class="center" alt="" align="middle" src="images/rocket.png"> {t}Action{/t}</h2>
46 <table summary="">
47  <tr>
48   <td>
49    <select size="1" name="action" title="{t}Select action to execute for this server{/t}">
50     <option disabled>&nbsp;</option>
51     {html_options options=$actions}
52    </select>
53   </td>
54   <td>
55    <input type=submit name="action" value="{t}Execute{/t}">
56   </td>
57  </tr>
58 </table>
61 <!-- Place cursor -->
62 <script language="JavaScript" type="text/javascript">
63   <!-- // First input field on page
64   document.mainform.cn.focus();
65   -->
66 </script>