WebshopApi: Übersetzungen
[kivitendo-erp.git] / templates / webpages / file / upload_dialog.html
1 [%- USE L -%][%- USE LxERP -%][%- USE JavaScript -%]
2
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 %]
6  <table>
7   <tr>
8    <td>[%- LxERP.t8("Filename") %]:</td><td>
9    <input type="file" name="uploadfiles[]" multiple="[% multiple %]" id="upload_files" size="45" accept="[% SELF.accept_types %]" onchange="kivi.File.allow_upload_submit();"></td>
10   </tr>
11   [% IF SELF.object_type == 'shop_image' %]
12     <tr>
13       <td>[% LxERP.t8("Title") %]</td>
14       <td>[% L.input_tag("title",'') %]</td>
15     </tr>
16     <tr>
17       <td>[% LxERP.t8("Description") %]</td>
18       <td>[% L.input_tag("description",'') %]</td>
19     </tr>
20   [% END %]
21  </table>
22
23  <p>
24   <input value="[%- LxERP.t8("Upload file") %]" id="upload_selected_button"
25          onclick="kivi.File.upload_selected_files([% SELF.object_id %],'[% SELF.object_type %]','[% SELF.file_type %]',[% SELF.maxsize %],[% SELF.is_global %]);"
26          type="button" disabled >
27   <a href="#" onclick="kivi.File.reset_upload_form();">[%- LxERP.t8("Reset") %]</a>
28   <a href="#" onclick="$('#files_upload').dialog('close');">[% LxERP.t8("Cancel") %]</a>
29  </p>
30
31  <hr>
32
33  <div id="upload_result"><p>&nbsp;</p></div>
34
35 </form>