Revision 46bc75c8
Von Thomas Heck vor etwa 12 Jahren hinzugefügt
templates/webpages/dunning/search.html | ||
---|---|---|
73 | 73 |
<tr> |
74 | 74 |
<th align="right" nowrap>[% 'Invdate from' | $T8 %]</th> |
75 | 75 |
<td> |
76 |
<input name="transdatefrom" id="transdatefrom" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)"> |
|
77 |
<input type="button" name="transdatefrom" id="trigger1" value="?"> |
|
76 |
[% L.date_tag('transdatefrom') %] |
|
78 | 77 |
</td> |
79 | 78 |
<th align="right" nowrap>[% 'To (time)' | $T8 %]</th> |
80 | 79 |
<td> |
81 |
<input name="transdateto" id="transdateto" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)"> |
|
82 |
<input type="button" name="transdateto" id="trigger2" value="?"> |
|
80 |
[% L.date_tag('transdateto') %] |
|
83 | 81 |
</td> |
84 | 82 |
</tr> |
85 | 83 |
|
86 | 84 |
<tr> |
87 | 85 |
<th align="right" nowrap>[% 'Dunning Date from' | $T8 %]</th> |
88 | 86 |
<td> |
89 |
<input name="dunningfrom" id="dunningfrom" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)"> |
|
90 |
<input type="button" name="dunningfrom" id="trigger3" value="?"> |
|
87 |
[% L.date_tag('dunningfrom') %] |
|
91 | 88 |
</td> |
92 | 89 |
<th align="right" nowrap>[% 'To (time)' | $T8 %]</th> |
93 | 90 |
<td> |
94 |
<input name="dunningto" id="dunningto" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)"> |
|
95 |
<input type="button" name="dunningto" id="trigger4" value="?"> |
|
91 |
[% L.date_tag('dunningto') %] |
|
96 | 92 |
</td> |
97 | 93 |
</tr> |
98 | 94 |
<tr> |
... | ... | |
126 | 122 |
<input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]"> |
127 | 123 |
|
128 | 124 |
</form> |
129 |
|
|
130 |
<script type="text/javascript"> |
|
131 |
<!-- |
|
132 |
Calendar.setup({ inputField : "transdatefrom", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger1" }); |
|
133 |
Calendar.setup({ inputField : "transdateto", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger2" }); |
|
134 |
Calendar.setup({ inputField : "dunningfrom", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger3" }); |
|
135 |
Calendar.setup({ inputField : "dunningto", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger4" }); |
|
136 |
--> |
|
137 |
</script> |
|
138 |
|
|
139 | 125 |
</body> |
140 | 126 |
|
141 | 127 |
</html> |
Auch abrufbar als: Unified diff
Date-Input-Felder durch 'L.date_tag's ersetzt