4  <form action="[% HTML.escape(script) %]" method="post">
 
   6   <input type="hidden" name="SAVED_FORM" value="[% HTML.escape(SAVED_FORM) %]">
 
  10     <th class="listtop">[% 'Load draft' | $T8 %]</th>
 
  16      [% 'The following drafts have been saved and can be loaded.' | $T8 %]
 
  24        <th class="listheading"> </th>
 
  25        <th class="listheading">[% 'Date' | $T8 %]</th>
 
  26        <th class="listheading">[% 'Description' | $T8 %]</th>
 
  27        <th class="listheading">[% 'Employee' | $T8 %]</th>
 
  30       [% FOREACH row = DRAFTS %]
 
  31        <tr class="listrow[% loop.count % 2 %]">
 
  32         <td><input type="checkbox" name="checked_[% row.id %]" value="1"></td>
 
  33         <td>[% HTML.escape(row.itime) %]</td>
 
  34         <td><a href="[% HTML.url(script) %]?action=load_draft&id=[% HTML.url(row.id) %]">[% HTML.escape(row.description) %]</a></td>
 
  35         <td>[% HTML.escape(row.employee_name) %]</td>
 
  44      <input type="hidden" name="action" value="draft_action_dispatcher">
 
  45      <input type="submit" class="submit" name="draft_action" value="[% 'Skip' | $T8 %]">
 
  46      <input type="submit" class="submit" name="draft_action" value="[% 'Delete drafts' | $T8 %]">