]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/generic/print_options.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / generic / print_options.html
1 [% USE T8 %]
2 [% USE HTML %]
3 <!--
4   PENDENT: Was soll diese Form des Dialogs?
5            Show_Headers sollte hier sowieso auf TRUE gestellt sein,
6            und der Dialog könnte vertikal statt horizontal ausgerichtet sein.
7 -->
8
9 <table class="tbl-horizontal">
10   <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
11   [% # IF show_headers %]
12     <body>
13        [% FOREACH row = SELECTS %]
14          [% IF row.show %]
15            <tr>
16              <th id="print_options_header_[% row.sname %]">[% row.hname %]</th>
17              <td id="print_options_input_[% row.sname %]">
18                <select name="[% name_prefix %][% row.sname %]" id="[% id_prefix %][% row.sname %]" class="wi-lightwide">
19                  [% FOREACH data = row.DATA %]
20                    <option value="[% data.value %]" [% data.selected %]>[% data.oname %]</option>
21                  [% END %]
22                </select>
23              </td>
24            </tr>
25          [% END %]
26        [% END %]
27        [% IF display_copies %]
28          <tr>
29            <th id="print_options_header_copies">[% 'Copies' | $T8 %]</th>
30            <td id="print_options_input_copies">
31              <input type="text" name="[% name_prefix %]copies" id="[% id_prefix %]copies" size="2" value="[% HTML.escape(copies) %]" class="wi-small">
32            </td>
33          </tr>
34        [% END %]
35        [% IF display_groupitems %]
36          <tr>
37            <th id="print_options_header_groupitems">[% 'Group Items' | $T8 %]</th>
38            <td id="print_options_input_groupitems">
39              <input name="[% name_prefix %]groupitems" id="[% id_prefix %]groupitems" type="checkbox" [% groupitems_checked %]>
40            </td>
41          </tr>
42        [% END %]
43        [% IF display_bothsided %]
44          <tr>
45            <th id="print_options_header_bothsided">[% 'Both-sided' | $T8 %]</th>
46            <td id="print_options_input_bothsided">
47              <input name="[% name_prefix %]bothsided" id="[% id_prefix %]bothsided" type="checkbox" [% bothsided_checked %]>
48            </td>
49          </tr>
50        [% END %]
51        [% IF display_remove_draft %]
52          <tr>
53            <th id="print_options_header_remove_draft">[% 'Remove Draft' | $T8 %]</th>
54            <td id="print_options_input_remove_draft">
55              <input name="[% name_prefix %]remove_draft" id="[% id_prefix %]remove_draft" type="checkbox" [% remove_draft_checked %]>
56            </td>
57          </tr>
58        [% END %]
59     </body>
60   [% # END %]
61 </table>
62
63 [% IF status_msg %]
64   <div class="message message_hint">[% status_msg %]</div>
65 [% END %]