Auftrags-Controller: Speichern und schließen, …
[kivitendo-erp.git] / templates / webpages / letter / load_drafts.html
index ceb1d54..088defa 100644 (file)
@@ -1,8 +1,9 @@
 [%- USE T8 %]
-[%- USE HTML %]
+[%- USE HTML %][%- USE L -%]
 <h1>[% 'Load letter draft' | $T8 %]</h1>
 
- <form method="post" name="Form" action="controller.pl">
+ <form method="post" name="Form" action="controller.pl" id="form">
+  [% L.hidden_tag('is_sales', SELF.is_sales) %]
   <p>[% 'The following drafts have been saved and can be loaded.' | $T8 %]</p>
   <table width="100%">
     </td>
        <th class="listheading">&nbsp;</th>
        <th class="listheading">[% 'Date' | $T8 %]</th>
        <th class="listheading">[% 'Subject' | $T8 %]</th>
+[%- IF SELF.is_sales %]
        <th class="listheading">[% 'Customer' | $T8 %]</th>
+[%- ELSE %]
+       <th class="listheading">[% 'Vendor' | $T8 %]</th>
+[%- END %]
       </tr>
 
       [% FOREACH row = LETTER_DRAFTS %]
        <tr class="listrow[% loop.count % 2 %]">
-        <td><input type="checkbox" name="checked_[% row.id %]" value="1"></td>
-        <td>[% row.date | html %]</td>
+        <td>[% L.checkbox_tag("ids[+]", value=row.id) %]</td>
+        <td>[% row.date.to_kivitendo | html %]</td>
         <td><a href="[% SELF.url_for(action='edit', 'draft.id'=row.id) %]">[% row.subject | html %]</a></td>
-        <td>[% row.customer | html %]</td>
+[%- IF SELF.is_sales %]
+        <td>[% row.customer.displayable_name | html %]</td>
+[%- ELSE %]
+        <td>[% row.vendor.displayable_name | html %]</td>
+[%- END %]
        </tr>
       [% END %]
      </table>
     </td>
    </tr>
-   <tr>
-    <td>
-     <input type="hidden" name="action" value="Letter/dispatch">
-     <input type="submit" class="submit" name="action_skip_draft" value="[% 'Skip' | $T8 %]">
-     <input type="submit" class="submit" name="action_delete_draft" value="[% 'Delete drafts' | $T8 %]">
-   </td>
-   </tr>
   </table>
  </form>