<body> in eigene Zeile (für späteres entfernen)
[kivitendo-erp.git] / templates / webpages / am / list_tax.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <body>
4
5  <div class="listtop">[% title %]</div>
6
7  <table>
8   <tr>
9    <th class="listheading">[% 'tax_taxkey' | $T8 %]</th>
10    <th class="listheading">[% 'tax_taxdescription' | $T8 %]</th>
11    <th class="listheading">[% 'tax_rate' | $T8 %]</th>
12    <th class="listheading">[% 'taxnumber' | $T8 %]</th>
13    <th class="listheading">[% 'account_description' | $T8 %]</th>
14   </tr>
15
16   [% SET row_odd = '1' %][% FOREACH row = TAX %]
17   <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
18    <td align="right">[% HTML.escape(row.taxkey) %]</td>
19    <td><a href="am.pl?action=edit_tax&id=[% HTML.url(row.id) %]&callback=[% HTML.url(callback) %]">[% HTML.escape(row.taxdescription) %]</a></td>
20    <td align="right">[% HTML.escape(row.rate) %] %</td>
21    <td align="right">[% HTML.escape(row.taxnumber) %]</td>
22    <td>[% HTML.escape(row.account_description) %]</td>
23   </tr>
24   [% END %]
25  </table>
26
27  <p>
28   <form method="post" action="am.pl">
29
30    <input name="callback" type="hidden" value="[% HTML.escape(callback) %]">
31    <input type="hidden" name="type" value="tax">
32    <input class="submit" type="submit" name="action" value="[% 'Add' | $T8 %]">
33   </form>
34  </p>
35
36 </body>
37 </html>
38