Generischer USTVA Report für alle Kontenrahmen ausser Germany
[kivitendo-erp.git] / templates / webpages / ustva / generic_taxreport_de.html
1 [% USE HTML %]<body>
2
3 <h1>USTVA Bericht</h1>
4 <p>Steuernummer: [% taxnumber %]</p>
5 <p>Jahr: [% year %]</p>
6 <p>Zeitraum: [% period %]</p>
7 <br />
8 <table width="33%">
9   <tr>
10     <th>Position</th>
11     <th>Betrag</th>
12   </tr>
13 [% SET row_odd = '1' %]
14 [% FOREACH row = USTVA %]
15   <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[%
16 SET row_odd = '1' %][% END %]">
17
18     <td align="left">[% HTML.escape(row.id) %]</td>
19     <td align="right">[% HTML.escape(row.amount) %]</td>
20   </tr>
21 [% END %]
22
23 </table>
24
25 </html>
26 </body>