Filemanagement: Web-Templates upload: nicht benutztes JavaScript-Plugin raus
[kivitendo-erp.git] / templates / webpages / file / upload_dialog.html
1 [%- USE L -%][%- USE LxERP -%]
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>
9    <td>
10     <input type="file" name="uploadfiles[]" multiple="[% multiple %]" id="upload_files" size="45" accept="[% SELF.accept_types %]" onchange="kivi.File.allow_upload_submit();">
11    </td>
12   </tr>
13   [% IF SELF.object_type == 'shop_image' %]
14    <tr>
15     <td>[% LxERP.t8("Title") %]</td>
16     <td>[% L.input_tag("title",'') %]</td>
17    </tr>
18    <tr>
19     <td>[% LxERP.t8("Description") %]</td>
20     <td>[% L.input_tag("description",'') %]</td>
21    </tr>
22   [% END %]
23  </table>
24
25  <p>
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>
31  </p>
32
33  <hr>
34
35  <div id="upload_result"><p>&nbsp;</p></div>
36
37 </form>