]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/opac/parts/advanced/numeric.tt2
It's ugly and hacky, but numeric search fully works (item barcode included)
[working/Evergreen.git] / Open-ILS / web / templates / default / opac / parts / advanced / numeric.tt2
1 <form id="adv_search_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                     <option value="identifier|isbn">[% l('ISBN') %]</option>
10                     <option value="identifier|issn">[% l('ISSN') %]</option>
11                     <option value="identifier|bib_cn">[% l('Call Number') %]</option>
12                     <option value="identifier|lccn">[% l('LCCN') %]</option>
13                     <option value="identifier|tcn">[% l('TCN') %]</option>
14                     <option value="item_barcode">[% l('Item Barcode') %]</option>
15                 </select>
16             </td>
17             <td>
18                 <input type="text" name="query" size="16" />
19             </td>
20         </tr>
21         <tr>
22             <td colspan="2" align="right">
23                 <input type="image" alt="[% l('Search') %]"
24                     src="[% ctx.media_prefix %]/images/search_btn.gif" />
25             </td>
26     </table>
27 </form>