Code

Added tooltip for pictures
[gosa.git] / plugins / admin / systems / startup.tpl
1 <h2><img alt="" align="middle" src="images/penguin.png"> {t}Boot parameters{/t}</h2>
2 <table summary="" style="width:100%;">
3  <tr>
4   <td style="width:50%; vertical-align:top;">
6    <table summary="">
7     <tr>
8      <td><LABEL for="gotoLdapServer">{t}LDAP server{/t}</LABEL></td>
9      <td>
10       <select name="gotoLdapServer" id="gotoLdapServer" title="{t}Choose LDAP server to use for accounts and terminal management{/t}" {$gotoLdapServerACL}>
11        {html_options values=$ldapservers output=$ldapservers selected=$gotoLdapServer_select}
12            <option disabled>&nbsp;</option>
13       </select>
14      </td>
15     </tr>
16     <tr>
17      <td><LABEL for="gotoBootKernel">{t}Boot kernel{/t}</LABEL></td>
18      <td><input id="gotoBootKernel" name="gotoBootKernel" size=20 maxlength=60 {$gotoBootKernelACL}
19                 value="{$gotoBootKernel}" title="{t}Enter the filename of the kernel to use{/t}"></td>
20     </tr>
21     <tr>
22      <td><LABEL for="customParameters">{t}Custom options{/t}</LABEL></td>
23      <td><input name="customParameters" id="customParameters"  size=25 maxlength=500 {$gotoKernelParametersACL}
24                 value="{$customParameters}" title="{t}Enter any parameters that should be passed to the kernel as append line during bootup{/t}"></td>
25     </tr>
26    </table>
28   </td>
30   <td style="border-left:1px solid #A0A0A0">
31      &nbsp;
32   </td>
33   
34   <td style="vertical-align:top;">
35     <input type="radio" name="bootmode" value="G" title="{t}Select if terminal supports graphical startup with progress bar{/t}" {$graphicalbootup} {$gotoKernelParametersACL}>
36     {t}use graphical bootup{/t}
37     <br>
38     <input type="radio" name="bootmode" value="T" title="{t}Select if terminal should boot in text mode{/t}" {$textbootup} {$gotoKernelParametersACL}>
39     {t}use standard linux textual bootup{/t}
40     <br>
41     <input type="radio" name="bootmode" value="D" title="{t}Select to get more verbose output during startup{/t}" {$debugbootup} {$gotoKernelParametersACL}>
42     {t}use debug mode for startup{/t}
43   </td>
44  </tr>
45 </table>
47 <table summary="" style="width:100%;">
48  <tr><td colspan=2><p class="plugbottom" style="margin-top:0px;"></p></td></tr>
50  <tr>
51   <td style="width:50%; vertical-align:top;">
52    <h2>
53     <img alt="" align="middle" src="images/hardware.png"> {t}Kernel modules (format: name parameters){/t}
54    </h2>
55     <select style="width:100%; height:100px;" name="modules_list[]" size=15 multiple title="{t}Add additional modules to load on startup{/t}">
56      {html_options values=$gotoModules output=$gotoModules}
57          <option disabled>&nbsp;</option>
58     </select>
59     <br>
60     <input name="module" size=30 align=middle maxlength=30 {$gotoModulesACL}>
61     <input type=submit value="{t}Add{/t}" name="add_module" {$gotoModulesACL}>&nbsp;
62     <input type=submit value="{t}Delete{/t}" name="delete_module" {$gotoModulesACL}>
63   </td>
65   <td style="vertical-align:top;">
66    <h2>
67     <img alt="" align="middle" src="images/zip.png"> {t}Automount devices (format: complete autofs entry){/t}
68    </h2>
69    <select style="width:100%; height:100px;" name="autofs_list[]" size=15 multiple title='{t}Add additional automount entries{/t}'>
70     {html_options values=$gotoAutoFs output=$gotoAutoFs}
71         <option disabled>&nbsp;</option>
72    </select>
73    <br>
74    <input name="autofs" size=30 align=middle maxlength=80>
75    <input type=submit value="{t}Add{/t}" name="add_autofs">&nbsp;
76    <input type=submit value="{t}Delete{/t}" name="delete_autofs">
77   </td>
78  </tr>
79 </table>
81 <table summary="" style="width:100%;">
82  <tr><td colspan=2><p class="plugbottom" style="margin-top:0px;"></p></td></tr>
84  <tr>
85   <td style="width:50%; vertical-align:top;">
86    <h2>
87     <img alt="" align="middle" src="images/folder.png"> {t}Additional fstab entries{/t}
88    </h2>
89    <select style="width:100%; height:100px;" name="fstab_list[]" size=15 multiple title="{t}Add additional filesystems to be mounted during startup{/t}">
90     {html_options values=$gotoFilesystem output=$gotoFilesystem}
91         <option disabled>&nbsp;</option>
92    </select>
93    <br>
94    <input name="fstab" size=80 align=middle maxlength=200 {$gotoFilesystemACL}>
95    <input type=submit value="{t}Add{/t}" name="add_fs" {$gotoFilesystemACL}>&nbsp;
96    <input type=submit value="{t}Delete{/t}" name="delete_fs" {$gotoFilesystemACL}>
97   </td>
98  </tr>
99 </table>
101 <!-- Place cursor -->
102 <script language="JavaScript" type="text/javascript">
103   <!-- // First input field on page
104   document.mainform.gotoLdapServer.focus();
105   -->
106 </script>