6 [% INCLUDE 'common/flash.html' %]
11 <table class="tbl-list wi-moderate" id="shop_list">
14 <th><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></th>
15 <th>[% 'Description' | $T8 %]</th>
16 <th>[% 'Type' | $T8 %]</th>
17 <th>[% 'Obsolete' | $T8 %]</th>
21 [% FOREACH shop = SHOPS %]
22 <tr id="shop_id_[% shop.id %]">
23 <td class="dragdrop"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></td>
24 <td><a href="[% SELF.url_for(action='edit', id=shop.id) %]">[% HTML.escape(shop.description) %]</a></td>
25 <td>[% HTML.escape(shop.connector) %]</a></td>
26 <td>[% HTML.escape(shop.obsolete) %]</td>
33 [% L.sortable_element('#shop_list tbody', url=SELF.url_for(action='reorder'), with='shop_id') %]
35 </div><!-- /.wrapper -->