Code

updated personal templates
[gosa.git] / gosa-plugins / goto / personal / environment / logonManagement.tpl
1 <h3>{t}Logon script management{/t}</h3>
3     <input type="hidden" name="dialogissubmitted" value="1">
5     <table summary="{t}Logon script management{/t}" width="100%">
6         <tr>
7                         <td width="50%" style="vertical-align:top;border-right:1px solid #B0B0B0">
8                                         <table summary="{t}Logon script settings{/t}">
9                                                 <tr>
10                                                         <td><LABEL for="LogonName">{t}Script name{/t}</LABEL>
11                                                         </td>
12                                                         <td>
13                                                                 <input type="text" size=20 value="{$LogonName}" name="LogonName" {$LogonNameACL} id="LogonName">
14                                                         </td>
15                                                 </tr>
16                                                 <tr>
17                                                         <td><LABEL for="LogonDescription">{t}Description{/t}</LABEL>
18                                                         </td>
19                                                         <td>
20                                                                 <input type="text" size=40 value="{$LogonDescription}" name="LogonDescription" id="LogonDescription"> 
21                                                         </td>
22                                                 </tr>
23                                                 <tr>
24                                                         <td><LABEL for="LogonPriority">{t}Priority{/t}</LABEL>
25                                                         </td><td>
26                                                 <select name="LogonPriority" id="LogonPriority">
27                                                         {html_options values=$LogonPriorityKeys output=$LogonPrioritys selected=$LogonPriority}
28                                                 </select>
29                                                         </td>
30                                                 </tr>
31                                         </table>
32                         </td>
33                         <td style="vertical-align:top">
34                                         <table summary="{t}Logon script flags{/t}">
35                                                 <tr>
36                                                         <td>
37                                                                 <input type="checkbox" value="L" name="LogonLast" {$LogonLastCHK} id="LogonLast">
38                                                         <LABEL for="LogonLast">{t}Last script{/t}</LABEL>
39                                                         </td>
40                                                 </tr>
41                                                 <tr>
42                                                         <td>
43                                                                 <input type="checkbox" value="O" name="LogonOverload" {$LogonOverloadCHK} id="LogonOverload">
44                                                                 <LABEL for="LogonOverload">{t}Script can be replaced by user{/t}</LABEL>
45                                                         </td>
46                                                 </tr>
47                                         </table>
48                         </td>
49                 </tr>
50         </table>
51         
52   <hr>
54         <h3>{t}Script{/t}</h3>
55         <table width="100%" summary="{t}Logon script{/t}">
56                 <tr>
57                         <td>
58                                 <textarea style="width:100%;height:400px;" name="LogonData">{$LogonData}</textarea>
59                         </td>
60                 </tr>
61                 <tr>
62                         <td>
63                                 <input type="file" name="importFile" id="importFile">
64                                 <button type='submit' name='StartImport'>{t}Import{/t}</button>
65                         </td>
66                 </tr>
67         </table>
69   <hr>
70   <div class="plugin-actions">
71     <button type='submit' name='LogonSave'>{msgPool type=applyButton}</button>
72     <button type='submit' name='LogonCancel'>{msgPool type=cancelButton}</button>
73   </div>
75 <script language="JavaScript" type="text/javascript">
76   <!-- // First input field on page
77         focus_field('LogonName');
78   -->
79 </script>