ActionBar: Angebote/Aufträge: E-Mail-Versand über Dialog implementiert
[kivitendo-erp.git] / templates / webpages / common / _send_email_dialog.html
1 [%- USE HTML %][%- USE LxERP -%][%- USE L -%]
2
3 <table>
4  <tbody>
5   <tr>
6    <th align="right" nowrap>[% LxERP.t8("To") %]</th>
7    <td>[% L.input_tag("email_form.to", email_form.to, size="80") %]</td>
8   </tr>
9
10   <tr>
11    <th align="right" nowrap>[% LxERP.t8("Cc") %]</th>
12    <td>[% L.input_tag("email_form.cc", email_form.cc, size="80") %]</td>
13   </tr>
14
15  [%- IF show_bcc %]
16   <tr>
17    <th align="right" nowrap>[% LxERP.t8("Bcc") %]</th>
18    <td>[% L.input_tag("email_form.bcc", email_form.bcc, size="80") %]</td>
19   </tr>
20  [%- END %]
21
22   <tr>
23    <th align="right" nowrap>[% LxERP.t8("Subject") %]</th>
24    <td>[% L.input_tag("email_form.subject", email_form.subject, size="80") %]</td>
25   </tr>
26
27   <tr>
28    <th align="right" nowrap>[% LxERP.t8("Attachment name") %]</th>
29    <td>[% L.input_tag("email_form.attachment_filename", email_form.attachment_filename, size="80") %]</td>
30   </tr>
31
32   <tr valign="top">
33    <th align="right" nowrap>[% LxERP.t8("Message") %]</th>
34    <td>[% L.textarea_tag("email_form.message", email_form.message, rows="15" cols="80" wrap="soft") %]</td>
35   </tr>
36  </tbody>
37 </table>
38
39 <div id="email_form_print_options"></div>
40
41 <p>
42  [% L.button_tag("kivi.SalesPurchase.send_email()", LxERP.t8("Send email")) %]
43  [% L.button_tag("\$('#send_email_dialog').dialog('close');", LxERP.t8("Abort")) %]
44 </p>