428f6b905d45e111a2cbeca387bb4e2a37344b00
[kivitendo-erp.git] / templates / mobile_webpages / image_upload / form.html
1 [% USE HTML %]
2 [% USE T8 %]
3 [% USE P %]
4 [% USE LxERP %]
5
6 <h1>[% title | html %]</h1>
7
8 <form action="controller.pl">
9
10 [% IF !SELF.object.id %]
11
12   <p>[% 'Input delivery order number (picker NYI)' | $T8 %]</p>
13
14   [% P.M.input_tag("object_number", "", label=LxERP.t8("Number")) %]
15   [% P.M.submit_tag("submit", LxERP.t8("Update")) %]
16 [% ELSE %]
17   <h2>[% SELF.object.displayable_name | html %]</h2>
18
19   [% P.hidden_tag("object_id", SELF.object.id) %]
20 [% END %]
21
22 [% P.hidden_tag("object_type", SELF.object_type) %]
23 [% P.hidden_tag("action", "ImageUpload/upload_image") %]
24 </form>
25
26 [%# IF SELF.object.id %]
27   <div id="image_list_[% SELF.object_type | html %]"></div>
28   <script>
29     $(function() { $.get('controller.pl', { action: "File/list", "file_type": "image", "object_type": "[% SELF.object_type %]", "object_id": "[% SELF.object.id %]", "json": "1"}, kivi.eval_json_result) });
30   </script>
31 [%# END %]