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