Code

Updated a couple of messages
[gosa.git] / gosa-plugins / goto / admin / systems / goto / Device / InstallRecipe.tpl
2 <h3>{t}Installation type{/t}</h3>
3 <table>
4     <tr>
5         <td><LABEL for="installBootstrapMethod">{t}Bootstrap method{/t}</LABEL></td>
6         <td>
7             <select name="installBootstrapMethod" size=1>
8                 {html_options options=$installBootstrapMethodList 
9                 selected=$installBootstrapMethod}
10             </select>
11         </td>
12     </tr>
13     <tr>
14         <td><LABEL for="installConfigManagement">{t}Config management{/t}</LABEL></td>
15         <td>
16             <select name="installConfigManagement" size=1
17                 onChange='document.mainform.submit();'>
18                 {html_options options=$installConfigManagementList 
19                 selected=$installConfigManagement}
20             </select>
21         </td>
22     </tr>
23 </table>
24 <hr>
25 <table style='width:100%;'>
26     <tr>
27         <td style='width:50%; vertical-align: top;'>
28             <h3>{t}Bootstrap settings{/t}</h3>
29     
30             <table>
31                 <tr>
32                     <td><LABEL for="installMirrorDN">{t}Mirror{/t}</LABEL></td>
33                     <td>
34                         <select name="installMirrorDN" size=1>
35                             {html_options options=$installMirrorDNList 
36                             selected=$installMirrorDN}
37                         </select>
38                     </td>
39                 </tr>
40                 <tr>
41                     <td><LABEL for="installTemplateDN">{t}Kickstart template{/t}</LABEL></td>
42                     <td>
43                         <select name="installTemplateDN" size=1>
44                             {html_options options=$installTemplateDNList 
45                             selected=$installTemplateDN}
46                         </select>
47                     </td>
48                 </tr>
49                 <tr>
50                     <td><LABEL for="installKernelPackage">{t}Kernel package{/t}</LABEL></td>
51                     <td>
52                         <select name="installKernelPackage" size=1>
53                             {html_options values=$installKernelPackageList output=$installKernelPackageList 
54                             selected=$installKernelPackage}
55                         </select>
56                     </td>
57                 </tr>
58             </table>
59         </td>
60         <td style='width:50%; vertical-align: top;padding-left:5px;' class='left-border'>
61             <h3>{t}Login{/t}</h3>
63             <table>
64                 <tr>
65                     <td>
66                         <input type='checkbox' value='1' {if $installRootEnabled} checked {/if}
67                             onClick="changeState('setKickstartRootPasswordHash');"
68                             name="installRootEnabled" id="installRootEnabled" 
69                            >
70                         <LABEL for="installRootEnabled">{t}Use root user{/t}</LABEL>&nbsp;
71                         <button name='setKickstartRootPasswordHash'
72                             {if !$installRootEnabled} disabled {/if}
73                             id="setKickstartRootPasswordHash">{t}Set password{/t}</button>
74                     </td>
75                 </tr>
76             </table>
77         </td>
78     </tr>
79     <tr>
80         <td colspan=2><hr></td>
81     </tr>
82     <tr>
83         <td style='width:50%; vertical-align: top;'>
84             <h3>{t}Locale{/t}</h3>
86             <table>
87                 <tr>
88                     <td><LABEL for="installKeyboardlayout">{t}Keyboard layout{/t}</LABEL></td>
89                     <td>
90                         <select name="installKeyboardlayout" size=1>
91                             {html_options values=$installKeyboardlayoutList output=$installKeyboardlayoutList 
92                             selected=$installKeyboardlayout}
93                         </select>
94                     </td>
95                 </tr>
96                 <tr>
97                     <td><LABEL for="installSystemLocale">{t}System locale{/t}</LABEL></td>
98                     <td>
99                         <select name="installSystemLocale" size=1>
100                             {html_options values=$installSystemLocaleList output=$installSystemLocaleList 
101                             selected=$installSystemLocale}
102                         </select>
103                     </td>
104                 </tr>
105             </table>
106         </td>
107         <td style='width:50%; vertical-align: top;padding-left:5px;' class='left-border'>
108             <h3>{t}Time{/t}</h3>
110             <table>
111                 <tr>
112                     <td>
113                         <input type='checkbox' name="installTimeUTC" id="installTimeUTC" 
114                         {if $installTimeUTC} checked {/if}>
115                         <LABEL for="installTimeUTC">{t}Use UTC{/t}</LABEL>
116                     </td>
117                 </tr>
118                 <tr>
119                     <td><LABEL for="installTimezone">{t}Timezone{/t}</LABEL></td>
120                     <td>
121                         <select size='1' name="installTimezone" id="installTimezone">
122                             {html_options values=$timezones options=$timezones selected=$installTimezone}
123                         </select>
124                     </td>
125                 </tr>
126                 <tr>    
127                     <td colspan=2>
128                         {t}NTP server{/t}
129                         {$installNTPServerList}
130                         <input type='text' name="installNTPServer_Input">
131                         <button name='installNTPServer_Add'>{msgPool type=addButton}</button>
132                     </td>
133                 </tr>
134             </table>
135         </td>
136     </tr>
137 </table>
139 <hr>
140 <h3>{t}Partition table{/t}</h3>
141 <table>
142     <tr>
143         <td><LABEL for="installPartitionTable">{t}Partition table{/t}</LABEL></td>
144         <td>
145             <input type='text' name="installPartitionTable" id="installPartitionTable" value="{$installPartitionTable}">
146         </td>
147     </tr>
148 </table>
150 <input type='hidden' name='InstallRecipePosted' value=1>