1 [% USE HTML %][% USE T8 %][% USE L %][% USE LxERP %]
 
   2 <h1>[% FORM.title %]</h1>
 
   4 [%- INCLUDE 'common/flash.html' %]
 
   6  <form method="post" action="controller.pl">
 
   7   [% IF !DELIVERY_TERMS.size %]
 
   9     [%- 'No delivery term has been created yet.' | $T8 %]
 
  13    <table id="delivery_term_list">
 
  15     <tr class="listheading">
 
  16      <th align="center"><img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]"></th>
 
  17      <th>[%- 'Description' | $T8 %]</th>
 
  18      <th>[%- 'Long Description' | $T8 %]</th>
 
  23     [%- FOREACH delivery_term = DELIVERY_TERMS %]
 
  24     <tr class="listrow[% loop.count % 2 %]" id="delivery_term_id_[% delivery_term.id %]">
 
  25      <td align="center" class="dragdrop"><img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]"></td>
 
  27       <a href="[% SELF.url_for(action => 'edit', id => delivery_term.id) %]">
 
  28        [%- HTML.escape(delivery_term.description) %]
 
  31      <td>[%- HTML.escape(delivery_term.description_long) %]</td>
 
  39    <a href="[% SELF.url_for(action => 'new') %]">[%- 'Create new delivery term' | $T8 %]</a>
 
  43  [% L.sortable_element('#delivery_term_list tbody', url => 'controller.pl?action=DeliveryTerm/reorder', with => 'delivery_term_id') %]