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) %]">
21 <!-- UPDATE: dieses unlustige Konstrukt mit einem echten Mehrspalter versehen, und das ab einer bestimmten Anzahl Plaetze-->
22 <table class="tbl-list width-moderate">
25 <th>[% 'Delete' | $T8 %]</th><th>[% 'Description' | $T8 %]</th>
26 <!-- <th>[% #'Delete' | $T8 %]</th><th>[% #'Description' | $T8 %]</th> -->
30 [%- SET row_odd = '1' %]
31 [%- USE bin_it = Iterator(BINS) %]
32 [%- FOREACH bin = bin_it %]
37 <td class="center">[% IF bin.in_use %] [% ELSE %]<input type="checkbox" name="delete_[% bin_it.count %]" value="1">[% END %]</td>
39 <input type="hidden" name="id_[% bin_it.count %]" value="[% HTML.escape(bin.id) %]">
40 <input name="description_[% bin_it.count %]" value="[% HTML.escape(bin.description) %]" type="text" class="wi-wide">
43 [%- #SET end_tr = '0' %]
44 [%- #UNLESS row_odd %][%- #SET end_tr = '1' %][%- #END %]
45 [%- #IF bin_it.last %][%- #SET end_tr = '1' %][%- #END %]
50 [%- #IF row_odd %][% #SET row_odd = '0' %][% #ELSE %][% #SET row_odd = '1' %][% #END %]
55 <input type="hidden" name="rowcount" value="[% BINS.size %]">