a20ae17082cea68132a335447c69f6fe8945ba1d
[kivitendo-erp.git] / templates / webpages / am / list_price_factors_de.html
1 [% USE HTML %]<body>
2
3  [% IF MESSAGE %]<p>[% MESSAGE %]</p>[% END %]
4
5  <div class="listtop">[% title %]</div>
6
7  <p>
8   <table width="100%">
9    <tr>
10     <td class="listheading" width="0%"></td>
11     <td class="listheading" width="0%"></td>
12     <td class="listheading" width="80%">Beschreibung</td>
13     <td class="listheading" width="20%">Faktor</td>
14    </tr>
15
16    [% SET row_odd = '1' %][% FOREACH factor = PRICE_FACTORS %]
17    <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
18     <td>[% IF factor.previous_id %]<a href="[% url_base %]&action=swap_price_factors&id1=[% HTML.url(factor.previous_id) %]&id2=[% HTML.url(factor.id) %]"><img border="0" src="image/up.png"></a>[% END %]</td>
19     <td>[% IF factor.next_id %]<a href="[% url_base %]&action=swap_price_factors&id1=[% HTML.url(factor.next_id) %]&id2=[% HTML.url(factor.id) %]"><img border="0" src="image/down.png"></a>[% END %]</td>
20     <td><a href="[% url_base %]&action=edit_price_factor&id=[% HTML.url(factor.id) %]">[% HTML.escape(factor.description) %]</a></td>
21     <td>[% HTML.escape(factor.factor) %]</td>
22    </tr>
23    [% END %]
24   </table>
25  </p>
26
27  <hr height="3">
28
29  <p>
30   <form method="post" action="am.pl">
31    <input type="hidden" name="type" value="price_factor">
32    <input type="hidden" name="login" value="[% HTML.escape(login) %]">
33    <input type="hidden" name="password" value="[% HTML.escape(password) %]">
34    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
35
36    <input type="submit" class="submit" name="action" value="Erfassen">
37   </form>
38  </p>
39
40 </body>
41 </html>