Revision 46bc75c8
Von Thomas Heck vor etwa 12 Jahren hinzugefügt
templates/webpages/fu/search.html | ||
---|---|---|
1 | 1 |
[%- USE T8 %] |
2 |
[%- USE L %] |
|
2 | 3 |
[% USE HTML %] |
3 | 4 |
<body onload="on_load()"> |
4 | 5 |
|
5 | 6 |
<script type="text/javascript"> |
6 | 7 |
<!-- |
7 | 8 |
function on_load() { |
8 |
Calendar.setup({ inputField : "follow_up_date_from", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "follow_up_date_from_trigger" }); |
|
9 |
Calendar.setup({ inputField : "follow_up_date_to", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "follow_up_date_to_trigger" }); |
|
10 |
Calendar.setup({ inputField : "itime_from", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "itime_from_trigger" }); |
|
11 |
Calendar.setup({ inputField : "itime_to", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "itime_to_trigger" }); |
|
12 | 9 |
document.Form.subject.focus(); |
13 | 10 |
} |
14 | 11 |
--> |
... | ... | |
58 | 55 |
<td align="right">[% 'Follow-Up Date' | $T8 %]</td> |
59 | 56 |
<td> |
60 | 57 |
[% 'From' | $T8 %] |
61 |
<input name="follow_up_date_from" id="follow_up_date_from" size="12"> |
|
62 |
<input type="button" name="follow_up_date_from_button" id="follow_up_date_from_trigger" value="?"> |
|
58 |
[% L.date_tag('follow_up_date_from') %] |
|
63 | 59 |
[% 'To (time)' | $T8 %] |
64 |
<input name="follow_up_date_to" id="follow_up_date_to" size="12"> |
|
65 |
<input type="button" name="follow_up_date_to_button" id="follow_up_date_to_trigger" value="?"> |
|
60 |
[% L.date_tag('follow_up_date_to') %] |
|
66 | 61 |
</td> |
67 | 62 |
</tr> |
68 | 63 |
|
... | ... | |
70 | 65 |
<td align="right">[% 'Created on' | $T8 %]</td> |
71 | 66 |
<td> |
72 | 67 |
[% 'From' | $T8 %] |
73 |
<input name="itime_from" id="itime_from" size="12"> |
|
74 |
<input type="button" name="itime_from_button" id="itime_from_trigger" value="?"> |
|
68 |
[% L.date_tag('itime_from') %] |
|
75 | 69 |
[% 'To (time)' | $T8 %] |
76 |
<input name="itime_to" id="itime_to" size="12"> |
|
77 |
<input type="button" name="itime_to_button" id="itime_to_trigger" value="?"> |
|
70 |
[% L.date_tag('itime_to') %] |
|
78 | 71 |
</td> |
79 | 72 |
</tr> |
80 | 73 |
|
Auch abrufbar als: Unified diff
Date-Input-Felder durch 'L.date_tag's ersetzt