b34efdaba7d66063b847215a8b12fe783b0a70b9
[kivitendo-erp.git] / templates / webpages / oe / sales_order_de.html
1 [% USE HTML %]
2 <tr>
3  <td>
4   <input type="hidden" name="show_details" value="[% HTML.escape(show_details) %]">
5   <input type="checkbox" id="cb_show_details" onclick="show_form_details([% IF show_details %]0[% ELSE %]1[% END %]);"[%- IF show_details %] checked[% END %]>
6   <label for="cb_show_details">Details anzeigen</label><br>
7   <table width="100%">
8    <tr class="listheading">[% FOREACH header = HEADER %][% IF header.display %]
9     <th align="left" nowrap width="[% header.width %]" class="listheading">[% header.value %]</th>[% END %][% END %]
10    </tr>
11
12    [% FOREACH row = ROWS %]
13      <tr valign="top" class="listrow[% loop.count % 2 %]">[% FOREACH row1 = row.ROW1 %]
14       <td align="[% row1.align %]"[% IF row1.nowrap %] nowrap[% END %]>[% row1.value %]</td>[% END %]
15      </tr>
16
17      [% FOREACH hidden = row.HIDDENS %][% hidden.value %]
18      [% END %]
19
20      <tr class="listrow[% loop.count % 2 %]" [% UNLESS show_details %]style="display:none;"[% END %]><td colspan="[% row.colspan %]">[% FOREACH row2 = row.ROW2 %]
21       [% row2.value %][% END %]
22      </td></tr>
23    [% END %]
24
25   </table>
26  </td>
27 </tr>