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.
9 <table class="tbl-horizontal">
10 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
11 [% # IF show_headers %]
13 [% FOREACH row = SELECTS %]
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>
27 [% IF display_copies %]
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">
35 [% IF display_groupitems %]
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 %]>
43 [% IF display_bothsided %]
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 %]>
51 [% IF display_remove_draft %]
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 %]>
64 <div class="message message_hint">[% status_msg %]</div>