+++ /dev/null
-[%- USE T8 %][% USE L %][% USE LxERP %]
-[% USE HTML %]
-
-<script type="text/javascript" src="js/jquery-ui.js"></script>
-
-<body>
-
- [% IF MESSAGE %]<p>[% MESSAGE %]</p>[% END %]
-
- <div class="listtop">[% title %]</div>
-
- <p>
- <table width="100%" id="price_factor_list">
- <thead>
- <tr class="listheading">
- <th align="center"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></th>
- <th width="80%">[% 'Description' | $T8 %]</th>
- <th width="20%">[% 'Factor' | $T8 %]</th>
- </tr>
- </thead>
-
- <tbody>
- [% FOREACH factor = PRICE_FACTORS %]
- <tr class="listrow[% loop.count % 2 %]" id="price_factor_id_[% factor.id %]">
- <td align="center" class="dragdrop"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></td>
- <td><a href="[% url_base %]&action=edit_price_factor&id=[% HTML.url(factor.id) %]">[% HTML.escape(factor.description) %]</a></td>
- <td>[% HTML.escape(factor.factor) %]</td>
- </tr>
- [% END %]
- </tbody>
- </table>
- </p>
-
- <hr height="3">
-
- <p>
- <form method="post" action="am.pl">
- <input type="hidden" name="type" value="price_factor">
- <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
-
- <input type="submit" class="submit" name="action" value="[% 'Add' | $T8 %]">
- </form>
- </p>
-
- [% L.sortable_element('#price_factor_list tbody', url => 'controller.pl?action=PriceFactor/reorder', with => 'price_factor_id') %]
-
-</body>
-</html>