Zwei neue Features:
[kivitendo-erp.git] / templates / webpages / oe / report_for_todo_list_de.html
1 [% USE HTML %][% USE LxERP %]
2
3 <div class="listtop">&Uuml;berf&auml;llige Angebote</div>
4
5 <p>
6  <table width="100%">
7   <tr>
8    <td class="listheading">Datum</td>
9    <td class="listheading">gültig bis</td>
10    <td class="listheading">Auftrag</td>
11    <td class="listheading">Kunde</td>
12    <td class="listheading">Vorgangsbezeichnung</td>
13    <td class="listheading">Betrag</td>
14    <td class="listheading">Bearbeiter</td>
15   </tr>
16
17   [%- FOREACH row = QUOTATIONS %]
18   <tr class="listrow[% loop.count % 2 %]">
19    <td>[% HTML.escape(row.transdate) %]</td>
20    <td>[% HTML.escape(row.reqdate) %]</td>
21    <td><a href="[% edit_url %]&id=[% HTML.url(row.id) %]">[% HTML.escape(row.quonumber) %]</a></td>
22    <td>[% HTML.escape(row.customer) %]</td>
23    <td>[% HTML.escape(row.transaction_description) %]</td>
24    <td>[% HTML.escape(LxERP.format_amount(row.amount, 2)) %]</td>
25    <td>[% HTML.escape(row.employee) %]</td>
26   </tr>
27   [%- END %]
28  </table>
29 </p>