]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/rp/print_options.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / rp / print_options.html
1 [% USE HTML %]
2 [% USE LxERP %]
3 [% USE L %]
4 [% USE T8 %]
5 <table>
6   <tbody>
7    <tr>
8      <td>
9        <select name="type" id="type">
10          <option value="statement" [% pd.statement %]>[% 'Statement' | $T8 %]</option>
11        </select>
12      </td>
13      <td>
14        <select name="format" id="format">
15          <option value="html" [% df.html %]>[% 'HTML' | $T8 %]</option>
16          <option value="pdf" [% df.pdf %]>[% 'PDF' | $T8 %]</option>
17          <option value="postscript" [% df.postscript %]>[% 'Postscript' | $T8 %]</option>
18        </select>
19      </td>
20      <td>
21        <select name="media">
22          [% IF is_email %]
23            <option value="attachment" [% sm.attachment %]>[% 'Attachment' | $T8 %]</option>
24            <option value="inline" [% sm.inline %]>[% 'In-line' | $T8 %]</option>
25          [% ELSE %]
26            <option value="screen" [% op.screen %]>[% 'Screen' | $T8 %]</option>
27          [% IF MYCONFIG.printer && LXCONFIG.print_templates.latex %]
28            <option value="printer" [% op.printer %]>[% 'Printer' | $T8 %]</option>
29          [% END %] [% END %]
30        </select>
31      </td>
32      [% IF MYCONFIG.printer && LXCONFIG.print_templates.latex && !is_email %]
33        <td>[% 'Copies' | $T8 %]<input type="text" name="copies" size="2" value="[% copies %]"></td>
34      [% END %]
35    </tr>
36   </tbody>
37 </table>
38