Code

5a5d43c80e6fd325f6977b6e768bc0a475624dab
[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="installTemplate">{t}Template{/t}</LABEL></td>
6         <td>
7             <select name="installTemplate" size=1 onChange="document.mainform.submit();">
8                 {html_options options=$installTemplateList 
9                 selected=$installTemplate}
10             </select>
11         </td>
12     </tr>
13     <tr>
14         <td><LABEL for="installRelease">{t}Release{/t}</LABEL></td>
15         <td>
16             <select name="installRelease" size=1 onChange="document.mainform.submit();">
17                 {html_options options=$installReleaseList 
18                 selected=$installRelease}
19             </select>
20         </td>
21     </tr>
22     <tr>
23         <td><LABEL for="installConfigManagement">{t}Config management{/t}</LABEL></td>
24         <td>
25             <select nme="installConfigManagement" size=1 onChange='document.mainform.submit();'>
26                 {html_options options=$installConfigManagementList 
27                 selected=$installConfigManagement}
28             </select>
29         </td>
30     </tr>
31 </table>
32 <hr>
33 <table style='width:100%;'>
34     <tr>
35         <td style='width:50%; vertical-align: top;'>
36             <h3>{t}Bootstrap settings{/t}</h3>
37     
38             <table>
39                 <tr>
40                     <td><LABEL for="installMirror">{t}Mirror{/t}</LABEL></td>
41                     <td>
42                         <select name="installMirror" size=1>
43                             {html_options options=$installMirrorList 
44                             selected=$installMirror}
45                         </select>
46                     </td>
47                 </tr>
48                 <tr>
49                     <td><LABEL for="installKernelPackage">{t}Kernel package{/t}</LABEL></td>
50                     <td>
51                         <select name="installKernelPackage" size=1>
52                             {html_options values=$installKernelPackageList output=$installKernelPackageList 
53                             selected=$installKernelPackage}
54                         </select>
55                     </td>
56                 </tr>
57             </table>
58         </td>
59         <td style='width:50%; vertical-align: top;padding-left:5px;' class='left-border'>
60             <h3>{t}Login{/t}</h3>
62             <table>
63                 <tr>
64                     <td>
65                         <input type='checkbox' value='1' {if $installRootEnabled} checked {/if}
66                             onClick="changeState('setPasswordHash');"
67                             name="installRootEnabled" id="installRootEnabled" 
68                            >
69                         <LABEL for="installRootEnabled">{t}Use root user{/t}</LABEL>&nbsp;
70                         <button name='setPasswordHash'
71                             {if !$installRootEnabled} disabled {/if}
72                             id="setPasswordHash">{t}Set password{/t}</button>
73                     </td>
74                 </tr>
75             </table>
76         </td>
77     </tr>
78     <tr>
79         <td colspan=2><hr></td>
80     </tr>
81     <tr>
82         <td style='width:50%; vertical-align: top;'>
83             <h3>{t}Locale{/t}</h3>
85             <table>
86                 <tr>
87                     <td><LABEL for="installKeyboardlayout">{t}Keyboard layout{/t}</LABEL></td>
88                     <td>
89                         <select name="installKeyboardlayout" size=1>
90                             {html_options options=$installKeyboardlayoutList
91                             selected=$installKeyboardlayout}
92                         </select>
93                     </td>
94                 </tr>
95                 <tr>
96                     <td><LABEL for="installSystemLocale">{t}System locale{/t}</LABEL></td>
97                     <td>
98                         <select name="installSystemLocale" size=1>
99                             {html_options options=$installSystemLocaleList 
100                             selected=$installSystemLocale}
101                         </select>
102                     </td>
103                 </tr>
104             </table>
105         </td>
106         <td style='width:50%; vertical-align: top;padding-left:5px;' class='left-border'>
107             <h3>{t}Time{/t}</h3>
109             <table>
110                 <tr>
111                     <td>
112                         <input type='checkbox' name="installTimeUTC" id="installTimeUTC" 
113                         {if $installTimeUTC} checked {/if}>
114                         <LABEL for="installTimeUTC">{t}Use UTC{/t}</LABEL>
115                     </td>
116                 </tr>
117                 <tr>
118                     <td><LABEL for="installTimezone">{t}Timezone{/t}</LABEL></td>
119                     <td>
120                         <select size='1' name="installTimezone" id="installTimezone">
121                             {html_options output=$timezones values=$timezones 
122                             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>