This is a minor change, but affects all templates:
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / barcodes / search.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Label and Barcode Printing &rsaquo; Search</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-barcodes.inc" -->
7
8 <div id="main-compact">
9
10 <h1>Catalogue Item Search</h1>
11
12 <form name="f" method="post">
13         <input type="hidden" name="op" value="do_search" />
14         <input type="hidden" name="type" value="intranet" />
15         <input type="hidden" name="nbstatements" value="<!-- TMPL_VAR NAME="nbstatements" -->" />
16
17         <table>
18         <tr><th scope="row">
19                 <label for="title">Title</label>
20             </th>
21             <td>
22                 <input type="hidden" name="marclist" value="biblio.title" />
23                 <input type="hidden" name="and_or" value="and" />
24                 <input type="hidden" name="excluding" value="" />
25                 <input type="hidden" name="operator" value="contains" />
26                 <input type="text" id="title" name="value" />
27             </td></tr>
28         <tr><th scope="row">
29                 <label for="issn">ISSN</label>
30             </th>
31             <td>
32                 <input type="hidden" name="marclist" value="biblioitems.issn" />
33                 <input type="hidden" name="and_or" value="and" />
34                 <input type="hidden" name="excluding" value="" />
35                 <input type="hidden" name="operator" value="=" />
36                 <input type="text" name="value" id="issn" />
37             </td></tr>
38         <tr><th scope="row">
39                 <label for="resultsperpage">Results per page:</label>
40             </th>
41             <td>
42                 <select align="right" name="resultsperpage" id="resultsperpage" size="1">
43                         <option value="20">20</option>
44                         <option value="50">50</option>
45                         <option value="100">100</option>
46                 </select>
47                 <label for="orderby">Ordered by</label>
48                 <select name="orderby" id="orderby" size="1">
49                         <option value="biblio.title">Title</option>
50                         <option value="biblio.author">Author</option>
51                         <option value="biblioitems.dewey">Dewey</option>
52                         <option value="biblioitems.publicationyear">Publication Year</option>
53                         <option value="biblioitems.publishercode">Publisher</option>
54                 </select>
55             </td></tr>
56         </table>
57 <p>             <input type="submit" value="Start search" class="submit" /></p>
58 </form>
59 </div>
60 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->