3 <h1>[% 'Load draft' | $T8 %]</h1>
 
   5  <form action="[% HTML.escape(script) %]" method="post">
 
   7   <input type="hidden" name="SAVED_FORM" value="[% HTML.escape(SAVED_FORM) %]">
 
  12      [% 'The following drafts have been saved and can be loaded.' | $T8 %]
 
  20        <th class="listheading"> </th>
 
  21        <th class="listheading">[% 'Date' | $T8 %]</th>
 
  22        <th class="listheading">[% 'Description' | $T8 %]</th>
 
  23        <th class="listheading">[% 'Employee' | $T8 %]</th>
 
  26       [% FOREACH row = DRAFTS %]
 
  27        <tr class="listrow[% loop.count % 2 %]">
 
  28         <td><input type="checkbox" name="checked_[% row.id %]" value="1"></td>
 
  29         <td>[% HTML.escape(row.itime) %]</td>
 
  30         <td><a href="[% HTML.url(script) %]?action=load_draft&id=[% HTML.url(row.id) %]">[% HTML.escape(row.description) %]</a></td>
 
  31         <td>[% HTML.escape(row.employee_name) %]</td>
 
  40      <input type="hidden" name="action" value="draft_action_dispatcher">
 
  41      <input type="submit" class="submit" name="draft_action" value="[% 'Skip' | $T8 %]">
 
  42      <input type="submit" class="submit" name="draft_action" value="[% 'Delete drafts' | $T8 %]">