5f4542992a
previously, it wasn't possible to insert anything into the <head> on an individual template unless it was the title of the page. Now, the structure is a bit more flexible to allow additional head elements to be included.
60 lines
2.1 KiB
Cheetah
60 lines
2.1 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Label and Barcode Printing › Search</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
|
|
<!-- TMPL_INCLUDE NAME="menus.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="menu-barcodes.inc" -->
|
|
|
|
<div id="main-compact">
|
|
|
|
<h1>Catalogue Item Search</h1>
|
|
|
|
<form name="f" method="post">
|
|
<input type="hidden" name="op" value="do_search" />
|
|
<input type="hidden" name="type" value="intranet" />
|
|
<input type="hidden" name="nbstatements" value="<!-- TMPL_VAR NAME="nbstatements" -->" />
|
|
|
|
<table>
|
|
<tr><th scope="row">
|
|
<label for="title">Title</label>
|
|
</th>
|
|
<td>
|
|
<input type="hidden" name="marclist" value="biblio.title" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<input type="hidden" name="operator" value="contains" />
|
|
<input type="text" id="title" name="value" />
|
|
</td></tr>
|
|
<tr><th scope="row">
|
|
<label for="issn">ISSN</label>
|
|
</th>
|
|
<td>
|
|
<input type="hidden" name="marclist" value="biblioitems.issn" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<input type="hidden" name="operator" value="=" />
|
|
<input type="text" name="value" id="issn" />
|
|
</td></tr>
|
|
<tr><th scope="row">
|
|
<label for="resultsperpage">Results per page:</label>
|
|
</th>
|
|
<td>
|
|
<select align="right" name="resultsperpage" id="resultsperpage" size="1">
|
|
<option value="20">20</option>
|
|
<option value="50">50</option>
|
|
<option value="100">100</option>
|
|
</select>
|
|
<label for="orderby">Ordered by</label>
|
|
<select name="orderby" id="orderby" size="1">
|
|
<option value="biblio.title">Title</option>
|
|
<option value="biblio.author">Author</option>
|
|
<option value="biblioitems.dewey">Dewey</option>
|
|
<option value="biblioitems.publicationyear">Publication Year</option>
|
|
<option value="biblioitems.publishercode">Publisher</option>
|
|
</select>
|
|
</td></tr>
|
|
</table>
|
|
<p> <input type="submit" value="Start search" class="submit" /></p>
|
|
</form>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|