E-Mail-Dialog: Cc, Bcc standardmäßig verstecken; Dateianhang nach unten
[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>
7     [% LxERP.t8("Recipients") %]
8    </th>
9    <td>
10     [% L.input_tag("email_form.to", email_form.to, size="80") %]
11     [% L.link("#", "[+]", onclick="\$('[data-toggle-recipients=1]').toggle()", "data-toggle-recipients"="1") %]
12     [% L.link("#", "[-]", onclick="\$('[data-toggle-recipients=1]').toggle()", "data-toggle-recipients"="1", class="hidden") %]
13    </td>
14   </tr>
15
16   <tr class="hidden" data-toggle-recipients="1">
17    <th align="right" nowrap>[% LxERP.t8("Cc") %]</th>
18    <td>[% L.input_tag("email_form.cc", email_form.cc, size="80") %]</td>
19   </tr>
20
21  [%- IF show_bcc %]
22   <tr class="hidden" data-toggle-recipients="1">
23    <th align="right" nowrap>[% LxERP.t8("Bcc") %]</th>
24    <td>[% L.input_tag("email_form.bcc", email_form.bcc, size="80") %]</td>
25   </tr>
26  [%- END %]
27
28   <tr>
29    <th align="right" nowrap>[% LxERP.t8("Subject") %]</th>
30    <td>[% L.input_tag("email_form.subject", email_form.subject, size="80") %]</td>
31   </tr>
32
33   <tr valign="top">
34    <th align="right" nowrap>[% LxERP.t8("Message") %]</th>
35    <td>[% L.textarea_tag("email_form.message", email_form.message, rows="15" cols="80" wrap="soft") %]</td>
36   </tr>
37
38   <tr>
39    <th align="right" nowrap>[% LxERP.t8("Attachment name") %]</th>
40    <td>[% L.input_tag("email_form.attachment_filename", email_form.attachment_filename, size="80") %]</td>
41   </tr>
42  </tbody>
43 </table>
44
45 <div id="email_form_print_options"></div>
46
47 <p>
48  [% L.button_tag("kivi.SalesPurchase.send_email()", LxERP.t8("Send email")) %]
49  [% L.button_tag("\$('#send_email_dialog').dialog('close');", LxERP.t8("Abort")) %]
50 </p>