Revision 3a476fcc
Von Thomas Heck vor mehr als 10 Jahren hinzugefügt
templates/webpages/am/config.html | ||
---|---|---|
37 | 37 |
<th align="right">[% 'E-mail' | $T8 %]</th> |
38 | 38 |
<td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td> |
39 | 39 |
</tr> |
40 |
|
|
40 |
|
|
41 | 41 |
<tr valign="top"> |
42 | 42 |
<th align="right">[% 'Signature' | $T8 %]</th> |
43 | 43 |
<td><textarea id="signature" name="signature" class="toggletextarea" rows="5" cols="50">[% HTML.escape(myconfig_signature) %] </textarea> |
44 |
<span id="full_signature" class="toggletextarea"> <textarea readonly name="full_signature" rows="10" cols="50" >[% HTML.escape(full_signature) %]</textarea> </span>
|
|
44 |
<span id="full_signature" class="toggletextarea"> <textarea readonly name="full_signature" rows="10" cols="50" >[% HTML.escape(full_signature) %]</textarea> </span> |
|
45 | 45 |
<a href="#" class="togglelink">[% 'Check full signature' | $T8 %]</a> |
46 | 46 |
<a href="#" id="edit_signature" class="togglelink">[% 'Edit user signature' | $T8 %]</a> |
47 | 47 |
</td> </tr> |
... | ... | |
62 | 62 |
</td> |
63 | 63 |
</tr> |
64 | 64 |
|
65 |
<tr> |
|
66 |
<th align="right">[% 'Focus position after update' | $T8 %]</th> |
|
67 |
<td> |
|
68 |
[% L.select_tag( |
|
69 |
'focus_position', |
|
70 |
[ |
|
71 |
['new_description', LxERP.t8('New row, description')], |
|
72 |
['new_partnumber', LxERP.t8('New row, partnumber')], |
|
73 |
['last_description', LxERP.t8('Last row, description')], |
|
74 |
['last_partnumber', LxERP.t8('Last row, partnumber')], |
|
75 |
], |
|
76 |
default => myconfig_focus_position) |
|
77 |
%] |
|
78 |
</td> |
|
79 |
</tr> |
|
80 |
|
|
65 | 81 |
</table> |
66 | 82 |
</div> |
67 | 83 |
|
... | ... | |
222 | 238 |
</form> |
223 | 239 |
|
224 | 240 |
<script type="text/javascript"> |
225 |
<!--
|
|
241 |
<!-- |
|
226 | 242 |
$(function() { |
227 | 243 |
$("#full_signature").toggle(); |
228 | 244 |
$("#edit_signature").toggle(); |
Auch abrufbar als: Unified diff
Focusposition nach Erneuern wählbar gemacht