1 [%- USE L -%][%- USE LxERP -%]
 
   3 <form method="post" id="upload_form" enctype="multipart/form-data" action="controller.pl">
 
   4  [% SET multiple = 'true' %]
 
   5  [% IF SELF.object_type == 'shop_image' %][% multiple = 'false' %][% END %]
 
   8    <td>[%- LxERP.t8("Filename") %]:</td>
 
  10     <input type="file" name="uploadfiles[]" multiple="[% multiple %]" id="upload_files" size="45" accept="[% SELF.accept_types %]" onchange="kivi.File.allow_upload_submit();">
 
  13   [% IF SELF.object_type == 'shop_image' %]
 
  15     <td>[% LxERP.t8("Title") %]</td>
 
  16     <td>[% L.input_tag("title",'') %]</td>
 
  19     <td>[% LxERP.t8("Description") %]</td>
 
  20     <td>[% L.input_tag("description",'') %]</td>
 
  26   <input value="[%- LxERP.t8("Upload file") %]" id="upload_selected_button"
 
  27          onclick="kivi.File.upload_selected_files([% SELF.object_id %],'[% SELF.object_type %]','[% SELF.file_type %]',[% SELF.maxsize %],[% SELF.is_global %]);"
 
  28          type="button" disabled>
 
  29   <a href="#" onclick="kivi.File.reset_upload_form();">[%- LxERP.t8("Reset") %]</a>
 
  30   <a href="#" onclick="$('#files_upload').dialog('close');">[% LxERP.t8("Cancel") %]</a>
 
  35  <div id="upload_result"><p> </p></div>