]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/advanced/numeric.tt2
Add the library selector to numeric and expert search pages.
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / advanced / numeric.tt2
1 <form action="[% ctx.opac_root %]/results" method="GET">
2     <div class="header_middle">[% l("Numeric Search") %]</div>
3     <input type="hidden" name="contains" value="contains" />
4     <input type="hidden" name="_special" value="1" />
5     <table>
6         <tr>
7             <td>
8                 <select name="qtype">
9                     <!-- TODO: Pull labels from config.metabib_field.label -->
10                     <option value="identifier|isbn">[% l('ISBN') %]</option>
11                     <option value="identifier|issn">[% l('ISSN') %]</option>
12                     <option value="identifier|bib_cn">[% l('Bib Call Number') %]</option>
13                     <option value="cnbrowse">[% l('Call Number (Shelf Browse)') %]</option>
14                     <option value="identifier|lccn">[% l('LCCN') %]</option>
15                     <option value="identifier|tcn">[% l('TCN') %]</option>
16                     <option value="item_barcode">[% l('Item Barcode') %]</option>
17                 </select>
18             </td>
19             <td>
20                 <input type="text" name="query" size="16" autofocus />
21             </td>
22             <td>
23                   [% PROCESS "opac/parts/org_selector.tt2";
24                      l(' in '); INCLUDE build_org_selector show_loc_groups=1 %]
25             </td>
26         </tr>
27         <tr>
28             <td colspan="2" align="right">
29                 <input type="submit" alt="[% l('Search') %]"
30                     value="[% l('Search') %]" class="opac-button" />
31             </td>
32     </table>
33 </form>