1 [%- USE HTML -%][%- USE T8 -%]
6 <p>[% 'No bins have been added to this warehouse yet.' | $T8 %]</p>
11 [%- 'Bins that have been used in the past cannot be deleted anymore. For these bins there\'s no checkbox in the "Delete" column.' | $T8 %]
14 <form method="post" action="am.pl" id="form">
16 <input type="hidden" name="warehouse_id" value="[% HTML.escape(id) %]">
18 <input type="hidden" name="type" value="bin">
19 <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
23 <th class="listheading">[% 'Delete' | $T8 %]</th><th class="listheading">[% 'Description' | $T8 %]</th>
24 <th class="listheading">[% 'Delete' | $T8 %]</th><th class="listheading">[% 'Description' | $T8 %]</th>
26 [%- SET row_odd = '1' %]
27 [%- USE bin_it = Iterator(BINS) %]
28 [%- FOREACH bin = bin_it %]
33 <td>[% IF bin.in_use %] [% ELSE %]<input type="checkbox" name="delete_[% bin_it.count %]" value="1">[% END %]</td>
35 <input type="hidden" name="id_[% bin_it.count %]" value="[% HTML.escape(bin.id) %]">
36 <input name="description_[% bin_it.count %]" value="[% HTML.escape(bin.description) %]">
39 [%- SET end_tr = '0' %]
40 [%- UNLESS row_odd %][%- SET end_tr = '1' %][%- END %]
41 [%- IF bin_it.last %][%- SET end_tr = '1' %][%- END %]
46 [%- IF row_odd %][% SET row_odd = '0' %][% ELSE %][% SET row_odd = '1' %][% END %]
50 <input type="hidden" name="rowcount" value="[% BINS.size %]">