$::request->layout->focus() größtenteils durch class="initial_focus" ersetzen
[kivitendo-erp.git] / templates / webpages / generic / edit_email.html
1 [%- USE T8 %]
2 [%- USE HTML %][%- USE L -%]
3 <form name="Form" method="post" action="[% script %]">
4
5 <table width="100%">
6   <tr class="listtop">
7
8     <th class="listtop">[% title %]</th>
9   </tr>
10   <tr height="5"></tr>
11   <tr>
12     <td>
13       <table>
14         <tr>
15           <th align="right" nowrap>[% 'To' | $T8 %]</th>
16
17           <td>[% L.input_tag('email', email, size=30, class=(email ? '' : 'initial_focus')) %]</td>
18         </tr>
19         <tr>
20           <th align="right" nowrap>[% 'Cc' | $T8 %]</th>
21           <td><input name="cc" size="30" value="[% HTML.escape(cc) %]"></td>
22         </tr>
23 [% IF SHOW_BCC %]
24         <tr>
25           <th align="right" nowrap>[% 'Bcc' | $T8 %]</th>
26           <td><input name="bcc" size="30" value="[% HTML.escape(bcc) %]"></td>
27         </tr>[% END %]
28         <tr>
29           <th align="right" nowrap>[% 'Subject' | $T8 %]</th>
30
31           <td>[% L.input_tag('subject', subject, size=30, class=(email ? 'initial_focus' : '')) %]</td>
32         </tr>
33         <tr>
34           <th align="right" nowrap>[% 'Attachment name' | $T8 %]</th>
35           <td><input name="attachment_filename" size="30" value="[% HTML.escape(a_filename) %]"></td>
36       </table>
37     </td>
38   </tr>
39
40   <tr>
41     <td>
42       <table>
43         <tr>
44           <th align="left" nowrap>[% 'Message' | $T8 %]</th>
45         </tr>
46         <tr>
47           <td><textarea name="message" rows="15" cols="60" wrap="soft">[% HTML.escape(message) %]</textarea></td>
48
49         </tr>
50       </table>
51     </td>
52   </tr>
53   <tr>
54     <td>
55
56 [% print_options %]
57 [% FOREACH row = HIDDEN %]<input type="hidden" name="[% row.name %]" value="[% HTML.escape(row.value) %]">
58 [% END %]
59
60     </td>
61   </tr>
62
63   <tr>
64     <td><hr size="3" noshade></td>
65   </tr>
66 </table>
67
68 <input type="hidden" name="nextsub" value="send_email">
69
70 <br>
71 <input name="action" class="submit" type="submit" value="[% 'Continue' | $T8 %]">
72 </form>