94bc35aa63d4874ce2dbcff7c8421faee15bb2c5
[kivitendo-erp.git] / templates / webpages / am / list_tax_de.html
1 [% USE HTML %]<body>
2
3  <div class="listtop">[% title %]</div>
4
5  <table>
6   <tr>
7    <th class="listheading">Steuerschlüssel</th>
8    <th class="listheading">Steuername</th>
9    <th class="listheading">Prozent</th>
10    <th class="listheading">Automatikkonto</th>
11    <th class="listheading">Beschreibung</th>
12   </tr>
13
14   [% SET row_odd = '1' %][% FOREACH row = TAX %]
15   <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
16    <td align="right">[% HTML.escape(row.taxkey) %]</td>
17    <td><a href="am.pl?action=edit_tax&id=[% HTML.url(row.id) %]&login=[% HTML.url(login) %]&password=[% HTML.url(password) %]&callback=[% HTML.url(callback) %]">[% HTML.escape(row.taxdescription) %]</a></td>
18    <td align="right">[% HTML.escape(row.rate) %] %</td>
19    <td align="right">[% HTML.escape(row.taxnumber) %]</td>
20    <td>[% HTML.escape(row.account_description) %]</td>
21   </tr>
22   [% END %]
23  </table>
24
25  <p>
26   <form method="post" action="am.pl">
27
28    <input name="callback" type="hidden" value="[% HTML.escape(callback) %]">
29    <input type="hidden" name="type" value="tax">
30    <input type="hidden" name="login" value="[% HTML.escape(login) %]">
31    <input type="hidden" name="password" value="[% HTML.escape(password) %]">
32    <input class="submit" type="submit" name="action" value="Erfassen">
33   </form>
34  </p>
35
36 </body>
37 </html>
38