119 lines
4.4 KiB
Cheetah
119 lines
4.4 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Circulation › Holds Queue</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
|
|
<script type="text/JavaScript" language="JavaScript">
|
|
//<![CDATA[
|
|
//$.tablesorter.addParser({
|
|
// id: 'articles',
|
|
// is: function(s) {return false; },
|
|
// format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); },
|
|
// type: 'text'
|
|
//});
|
|
// $(document).ready(function() {
|
|
// $.tablesorter.defaults.widgets = ['zebra'];
|
|
// $("#holdst").tablesorter({<!-- TMPL_IF EXPR="dateformat eq 'metric'" -->
|
|
// dateFormat: 'uk',<!-- /TMPL_IF -->
|
|
// sortList: [[1,0]],
|
|
// headers: { 0: { sorter: 'articles' }}
|
|
// });
|
|
// });
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="cat-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a><!-- TMPL_IF NAME="run_report" --> › <a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds Queue</a> › Results<!-- TMPL_ELSE --> › Holds Queue<!-- /TMPL_IF --></div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-g">
|
|
|
|
<h1>Holds Queue</h1>
|
|
|
|
<!-- TMPL_IF NAME="run_report" -->
|
|
|
|
|
|
<!-- TMPL_IF NAME="total" -->
|
|
<div class="results"><!-- TMPL_VAR NAME="total" --> items found for <!-- TMPL_VAR NAME="branch" --></div>
|
|
<!-- TMPL_ELSE-->
|
|
<div class="dialog message">No items found.</div>
|
|
<!-- /TMPL_IF -->
|
|
|
|
|
|
<!-- TMPL_IF NAME="itemsloop" -->
|
|
<table id="holdst">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Collection</th>
|
|
<th>Shelving Location</th>
|
|
<th>Call Number</th>
|
|
<th>Barcode</th>
|
|
<th>Enumeration</th>
|
|
<th>Send To</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody><!-- TMPL_LOOP NAME="itemsloop"-->
|
|
<tr>
|
|
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><!-- TMPL_VAR NAME="title" escape="html"--></a></td>
|
|
<td><!-- TMPL_VAR NAME="author" --></td>
|
|
<td><!-- TMPL_VAR NAME="ccode" --></td>
|
|
<td><!-- TMPL_VAR NAME="location" --></td>
|
|
<td><!-- TMPL_VAR NAME="itemcallnumber"--></td>
|
|
<td>
|
|
<!-- TMPL_IF NAME="item_level_request" -->
|
|
<!-- TMPL_VAR NAME="barcode" -->
|
|
<!-- TMPL_ELSE -->
|
|
<em>Any available copy</em>
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td><!-- TMPL_VAR NAME="enumchron" --></td>
|
|
<td><!-- TMPL_VAR NAME="pickbranch" --></td>
|
|
<td><!-- TMPL_VAR NAME="reservedate" --></td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP --></tbody>
|
|
</table>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_UNLESS NAME="total" -->
|
|
<form name="f" action="/cgi-bin/koha/circ/view_holdsqueue.pl" method="post">
|
|
<fieldset class="rows">
|
|
<ol>
|
|
<li><label for="branchlimit">Library: </label><select name="branchlimit" id="branchlimit">
|
|
<option value="">All</option>
|
|
<!-- TMPL_LOOP name="branchloop" -->
|
|
<!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select></li>
|
|
<!-- Not working yet
|
|
<li><label for="itemtypeslimit">Item Type: </label><select name="itemtypeslimit" id="itemtypeslimit">
|
|
<option value="">All</option>
|
|
<!-- TMPL_LOOP name="itemtypeloop" -->
|
|
<!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="description" --></option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="description" --></option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select></li>
|
|
-->
|
|
</ol></fieldset>
|
|
<fieldset class="action"> <input type="submit" value="Submit" />
|
|
<input type="hidden" name="run_report" value="1" /></fieldset>
|
|
</form>
|
|
<!-- /TMPL_UNLESS -->
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|