Code

Updated mass deploayment.
[gosa.git] / gosa-plugins / goto / addons / goto / events / timestamp_select.tpl
1 <table cellspacing="0" cellpadding="0">
2         <tr>
3                 <td>{t}Year{/t}</td>
4                 <td>{t}Month{/t}</td>
5                 <td>{t}Day{/t}</td>
6     <td>&nbsp;&nbsp;</td>
7                 <td>{t}Hour{/t}</td>
8                 <td>{t}Minute{/t}</td>
9                 <td>{t}Second{/t}</td>
10         </tr>
11         <tr>
12                 <td>
13                         <select name="time_year" onChange="document.mainform.submit();">
14                                 {html_options values=$years options=$years selected=$time_year}
15                         </select>&nbsp;
16                 </td>
17                 <td>
18                         <select name="time_month" onChange="document.mainform.submit();">
19                                 {html_options values=$months options=$months selected=$time_month}
20                         </select>&nbsp;
21                 </td>
22                 <td>
23                         <select name="time_day">
24                                 {html_options values=$days options=$days selected=$time_day}
25                         </select>&nbsp;
26                 </td>
27     <td>&nbsp;</td>
28                 <td>
29                         <select name="time_hour">
30                                 {html_options values=$hours options=$hours selected=$time_hour}
31                         </select>&nbsp;
32                 </td>
33                 <td>
34                         <select name="time_minute">
35                                 {html_options values=$minutes options=$minutes selected=$time_minute}
36                         </select>&nbsp;
37                 </td>
38                 <td>
39                         <select name="time_second">
40                                 {html_options values=$seconds options=$seconds selected=$time_second}
41                         </select>
42                 </td>
43         </tr>
44 </table>