Fehlendes <tr>-Tag hinzugefĆ¼gt.
[kivitendo-erp.git] / templates / webpages / generic / edit_email.html
1 [%- USE T8 %]
2 [%- USE HTML %][%- USE LxERP -%][%- USE L -%]
3 <h1>[% title %]</h1>
4
5 <form name="Form" method="post" action="[% script %]">
6
7 <table width="100%">
8   <tr>
9     <td>
10       <table>
11         <tr>
12           <th align="right" nowrap>[% 'To' | $T8 %]</th>
13
14           <td>[% L.input_tag('email', email, size=30, class=(email ? '' : 'initial_focus')) %]</td>
15         </tr>
16         <tr>
17           <th align="right" nowrap>[% 'Cc' | $T8 %]</th>
18           <td><input name="cc" size="30" value="[% HTML.escape(cc) %]"></td>
19         </tr>
20 [%- IF SHOW_BCC %]
21         <tr>
22           <th align="right" nowrap>[% 'Bcc' | $T8 %]</th>
23           <td><input name="bcc" size="30" value="[% HTML.escape(bcc) %]"></td>
24         </tr>
25 [%- END %]
26         <tr>
27           <th align="right" nowrap>[% 'Subject' | $T8 %]</th>
28           <td>[% L.input_tag('subject', subject, size=30, class=(email ? 'initial_focus' : '')) %]</td>
29         </tr>
30         <tr>
31           <th align="right" nowrap>[% 'Attachment name' | $T8 %]</th>
32           <td><input name="attachment_filename" size="30" value="[% HTML.escape(a_filename) %]"></td>
33         </tr>
34       </table>
35     </td>
36   </tr>
37
38   <tr>
39     <td>
40       <table>
41         <tr>
42           <th align="left" nowrap>[% 'Message' | $T8 %]</th>
43         </tr>
44         <tr>
45           <td><textarea name="message" id="message" rows="15" cols="60" wrap="soft">[% HTML.escape(message) %]</textarea></td>
46
47         </tr>
48       </table>
49     </td>
50   </tr>
51   <tr>
52     <td>
53
54 [% print_options %]
55 [% FOREACH row = HIDDEN %]<input type="hidden" name="[% row.name %]" value="[% HTML.escape(row.value) %]">
56 [% END %]
57
58     </td>
59   </tr>
60
61   <tr>
62     <td><hr size="3" noshade></td>
63   </tr>
64 </table>
65
66 <input type="hidden" name="nextsub" value="send_email">
67
68 <br>
69 [% L.submit_tag('action', LxERP.t8('Continue'), onclick="return check_prerequisites();") %]
70 </form>
71
72 <script type="text/javascript">
73 <!--
74 function check_prerequisites() {
75   if (!$('#email,#subject,#message').filter(function(idx, elt) { return $(elt).val() === ""; }).size())
76     return true;
77
78   alert(kivi.t8('The recipient, subject or body is missing.'));
79   return false;
80 }
81 -->
82 </script>