Lines 189-198
Link Here
|
189 |
</ul> |
189 |
</ul> |
190 |
|
190 |
|
191 |
<div id="records_to_import"> |
191 |
<div id="records_to_import"> |
192 |
<span class="checkall"><a id="checkAll" href="#">Check all</a></span> |
192 |
<div id="searchheader"> |
193 |
<span class="uncheckall"><a id="unCheckAll" href="#">Uncheck all</a></span> |
193 |
<div> |
194 |
<label for="showallbudgets" style="float:none;width:auto;"> Show inactive funds:</label> |
194 |
<span class="checkall"><a id="checkAll" href="#">Select all</a></span> |
195 |
<input type="checkbox" id="showallbudgets" /> |
195 |
| |
|
|
196 |
<span class="uncheckall"><a id="unCheckAll" href="#">Clear all</a></span> |
197 |
| |
198 |
<span> |
199 |
<label for="matcher_id">Matching:</label> |
200 |
<select name="matcher_id" id="matcher_id"> |
201 |
<option value="">Do not look for matching records</option> |
202 |
[% FOREACH available_matcher IN available_matchers %] |
203 |
[% IF ( available_matcher.code == current_matcher_code ) %] |
204 |
<option value="[% available_matcher.matcher_id %]" selected="selected"> |
205 |
[% available_matcher.code %] ([% available_matcher.description %]) |
206 |
</option> |
207 |
[% ELSE %] |
208 |
<option value="[% available_matcher.matcher_id %]"> |
209 |
[% available_matcher.code %] ([% available_matcher.description %]) |
210 |
</option> |
211 |
[% END %] |
212 |
[% END %] |
213 |
</select> |
214 |
</span> |
215 |
| |
216 |
<span> |
217 |
<label for="showallbudgets" style="float:none;width:auto;"> Show inactive funds:</label> |
218 |
<input type="checkbox" id="showallbudgets" /> |
219 |
</span> |
220 |
</div> |
221 |
</div> |
222 |
|
196 |
<input type="hidden" name="op" value="import_records"/> |
223 |
<input type="hidden" name="op" value="import_records"/> |
197 |
<input type="hidden" name="basketno" value="[% basketno %]" /> |
224 |
<input type="hidden" name="basketno" value="[% basketno %]" /> |
198 |
<input type="hidden" name="booksellerid" value="[% booksellerid %]" /> |
225 |
<input type="hidden" name="booksellerid" value="[% booksellerid %]" /> |
199 |
- |
|
|