1 [% USE HTML %][% USE L %][% USE LxERP %]
 
   2 <h1>[% FORM.title %]</h1>
 
   4 [%- INCLUDE 'common/flash.html' %]
 
   6  <form method="post" action="controller.pl">
 
   7   [% IF !REQUIREMENT_SPEC_ACCEPTANCE_STATUSES.size %]
 
   9     [%- LxERP.t8('No acceptance statuses has been created yet.') %]
 
  13    <table id="requirement_spec_acceptance_status_list">
 
  15     <tr class="listheading">
 
  16      <th align="center"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></th>
 
  17      <th>[%- LxERP.t8('Name') %]</th>
 
  18      <th>[%- LxERP.t8('Description') %]</th>
 
  23     [%- FOREACH requirement_spec_acceptance_status = REQUIREMENT_SPEC_ACCEPTANCE_STATUSES %]
 
  24     <tr class="listrow[% loop.count % 2 %]" id="requirement_spec_acceptance_status_id_[% requirement_spec_acceptance_status.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 => requirement_spec_acceptance_status.id) %]">
 
  28        [%- HTML.escape(requirement_spec_acceptance_status.name) %]
 
  32      <td>[%- HTML.escape(requirement_spec_acceptance_status.description) %]</td>
 
  40    <a href="[% SELF.url_for(action => 'new') %]">[%- LxERP.t8('Create a new acceptance status') %]</a>
 
  44  [% L.sortable_element('#requirement_spec_acceptance_status_list tbody', url => 'controller.pl?action=RequirementSpecAcceptanceStatus/reorder', with => 'requirement_spec_acceptance_status_id') %]