Code

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