0229804f33f778375ba16e862a32b40ece1d2646
[kivitendo-erp.git] / templates / webpages / taxzones / list.html
1 [%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE T8 -%][%- INCLUDE 'common/flash.html' %]
2
3 <h1>[% title %]</h1>
4
5 <p>
6  <table width="100%" id="taxzone_list">
7   <thead>
8    <tr class="listheading">
9     <th align="center" width="1%"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></th>
10     <th>[% 'Description' | $T8 %]</th>
11    </tr>
12   </thead>
13
14   <tbody>
15    [%- FOREACH tz = TAXZONES %]
16     <tr class="listrow" id="tzone_id_[% tz.id %]">
17      <td align="center" class="dragdrop"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></td>
18      <td><a href="[% SELF.url_for(action='edit', id=tz.id) %]">[% HTML.escape(tz.description) %]</a></td>
19     </tr>
20    [%- END %]
21   </tbody>
22  </table>
23 </p>
24
25 <hr height="3">
26
27 [% L.sortable_element('#taxzone_list tbody', url=SELF.url_for(action='reorder'), with='tzone_id') %]
28
29 <p>
30  <a href="[% SELF.url_for(action='new') %]">[%- 'Add' | $T8 %]</a>
31 </p>
32