Lines 56-65
Link Here
|
56 |
<!-- BOOLEAN SEARCH OPTIONS --> |
56 |
<!-- BOOLEAN SEARCH OPTIONS --> |
57 |
<fieldset> |
57 |
<fieldset> |
58 |
<legend>Search For: </legend> |
58 |
<legend>Search For: </legend> |
59 |
[% FOREACH search_boxes_loo IN search_boxes_loop %] |
59 |
[% FOREACH search_box IN search_boxes_loop %] |
60 |
[% IF ( search_boxes_loo.search_boxes_label ) %]<div style="text-indent: 4.5em;">[% ELSE %]<div>[% END %] |
60 |
[% IF ( search_boxes_label ) %]<div style="text-indent: 4.5em;">[% ELSE %]<div>[% END %] |
61 |
[% IF ( search_boxes_loo.expanded_options ) %] |
61 |
[% IF ( expanded_options ) %] |
62 |
[% IF ( search_boxes_loo.boolean ) %] |
62 |
[% IF ( search_box.boolean ) %] |
63 |
<select name="op"> |
63 |
<select name="op"> |
64 |
<option value="and" selected="selected">and</option> |
64 |
<option value="and" selected="selected">and</option> |
65 |
<option value="or">or</option> |
65 |
<option value="or">or</option> |
Lines 69-81
Link Here
|
69 |
[% END %] |
69 |
[% END %] |
70 |
[% INCLUDE 'search_indexes.inc' %] |
70 |
[% INCLUDE 'search_indexes.inc' %] |
71 |
<input type="text" size="30" name="q" title="Enter search terms" value="" /> |
71 |
<input type="text" size="30" name="q" title="Enter search terms" value="" /> |
72 |
[% IF ( search_boxes_loo.expanded_options ) %] |
72 |
[% IF ( expanded_options ) %] |
73 |
[% IF ( search_boxes_loo.add_field ) %] |
73 |
[% IF ( search_box.add_field ) %] |
74 |
<a href="JavaScript:add_field();" id="ButtonPlus" title="Add another field">[+]</a> |
74 |
<a href="JavaScript:add_field();" id="ButtonPlus" title="Add another field">[+]</a> |
75 |
[% END %] |
75 |
[% END %] |
76 |
[% IF ( search_boxes_loo.scan_index ) %] |
76 |
[% IF ( search_box.scan_index ) %] |
77 |
<label for="scan">Scan Indexes</label><input type="checkbox" name="scan" id="scan" value="1" /> |
77 |
<label for="scan">Scan Indexes</label><input type="checkbox" name="scan" id="scan" value="1" /> |
78 |
[% END %] |
78 |
[% END %] |
79 |
[% END %] |
79 |
[% END %] |
80 |
</div> |
80 |
</div> |
81 |
[% END %] |
81 |
[% END %] |
82 |
- |
|
|