]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/am/edit_warehouse.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / am / edit_warehouse.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <h1>[% IF id %][% 'Edit Warehouse' | $T8 %][% ELSE %][% 'Add Warehouse' | $T8 %][% END %]</h1>
4
5 <div class="wrapper">
6   <!-- UPDATE. message container -->
7  [% IF saved_message %]
8   <p>[% saved_message %]</p>
9  [% END %]
10
11  <form method="post" action="am.pl" id="form">
12
13   <input type="hidden" name="id" value="[% HTML.escape(id) %]">
14   <input type="hidden" name="type" value="warehouse">
15   <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
16
17   <table class="tbl-horizontal">
18     <tbody>
19    <tr>
20     <th>[% 'Description' | $T8 %]</th>
21     <td>
22      <input type="text" id='description' name="description" size="60" value="[% HTML.escape(description) %]" class="initial_focus">
23      <input type="hidden" name="orig_description" value="[% HTML.escape(description) %]">
24     </td>
25    </tr>
26
27    <tr>
28     <th>[% 'Invalid' | $T8 %]</th>
29     <td><input type="checkbox" name="invalid" value="1" [% IF invalid %]checked[% END %]></td>
30    </tr>
31
32    <tr>
33     <th>[% 'Number of new bins' | $T8 %]</th>
34     <td><input type="text" name="number_of_new_bins"></td>
35    </tr>
36
37    <tr>
38     <th>[%- 'Prefix for the new bins\' names' | $T8 %]</th>
39     <td><input type="text" name="prefix" value="[% 'Bin' | $T8 %]"></td>
40    </tr>
41    </tbody>
42   </table>
43  </form>
44 </div>