8a9d4c29bd6bd464de259ea79627f7482d9b13d5
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / view_holdsqueue.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Holds Queue</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5 <script type="text/JavaScript" language="JavaScript">
6 //<![CDATA[
7 //$.tablesorter.addParser({
8 //    id: 'articles', 
9 //    is: function(s) {return false;  }, 
10 //    format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); }, 
11 //    type: 'text' 
12 //});
13 //       $(document).ready(function() {
14 //              $.tablesorter.defaults.widgets = ['zebra']; 
15 //              $("#holdst").tablesorter({<!-- TMPL_IF EXPR="dateformat eq 'metric'" -->
16 //              dateFormat: 'uk',<!-- /TMPL_IF -->
17 //              sortList: [[1,0]],
18 //              headers: { 0: { sorter: 'articles' }}
19 //              });
20 //       });
21 //]]>
22 </script>
23 </head>
24 <body>
25 <!-- TMPL_INCLUDE NAME="header.inc" -->
26 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
27
28 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a><!-- TMPL_IF NAME="run_report" --> &rsaquo; <a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds Queue</a> &rsaquo; Results<!-- TMPL_ELSE --> &rsaquo; Holds Queue<!-- /TMPL_IF --></div>
29
30 <div id="doc" class="yui-t7">
31    
32    <div id="bd">
33         <div id="yui-main">
34         <div class="yui-g">
35
36 <h1>Holds Queue</h1>
37
38 <!-- TMPL_IF NAME="run_report" -->
39
40
41     <!-- TMPL_IF NAME="total" -->
42         <div class="results"><!-- TMPL_VAR NAME="total" --> items found for <!-- TMPL_VAR NAME="branch" --></div>
43     <!-- TMPL_ELSE-->
44         <div class="dialog message">No items found.</div>
45     <!-- /TMPL_IF -->
46
47
48     <!-- TMPL_IF NAME="itemsloop" -->
49 <table id="holdst">
50         <thead>
51         <tr>
52         <th>Title</th>
53         <th>Author</th>
54         <th>Collection</th>
55         <th>Shelving Location</th>
56         <th>Call Number</th>
57         <th>Barcode</th>
58         <th>Enumeration</th>
59         <th>Send To</th>
60         <th>Date</th>
61     </tr>
62         </thead>
63      <tbody><!-- TMPL_LOOP NAME="itemsloop"-->
64         <tr>
65             <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><!-- TMPL_VAR NAME="title"--></a></td>
66             <td><!-- TMPL_VAR NAME="author" --></td>
67             <td><!-- TMPL_VAR NAME="ccode" --></td>
68             <td><!-- TMPL_VAR NAME="location" --></td>
69             <td><!-- TMPL_VAR NAME="itemcallnumber"--></td>
70             <td>
71                 <!-- TMPL_IF NAME="item_level_request" -->
72                     <!-- TMPL_VAR NAME="barcode" -->
73                 <!-- TMPL_ELSE -->
74                     <em>Any available copy</em>
75                 <!-- /TMPL_IF -->
76             </td>
77             <td><!-- TMPL_VAR NAME="enumchron" --></td>
78             <td><!-- TMPL_VAR NAME="pickbranch" --></td>
79             <td><!-- TMPL_VAR NAME="reservedate" --></td>
80         </tr>
81     <!-- /TMPL_LOOP --></tbody>
82     </table>
83         <!-- /TMPL_IF --> 
84         <!-- /TMPL_IF --> 
85         
86 <!-- TMPL_UNLESS NAME="total" -->
87         <form name="f" action="/cgi-bin/koha/circ/view_holdsqueue.pl" method="post">
88         <fieldset class="rows">
89         <ol>
90         <li><label for="branchlimit">Library: </label><select name="branchlimit" id="branchlimit">
91                 <option value="">All</option>
92             <!-- TMPL_LOOP name="branchloop" -->
93                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
94                                 <!-- TMPL_ELSE -->
95                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
96                                 <!-- /TMPL_IF -->
97             <!-- /TMPL_LOOP -->
98             </select></li>
99                         <!--  Not working yet
100                         <li><label for="itemtypeslimit">Item Type: </label><select name="itemtypeslimit" id="itemtypeslimit">
101                 <option value="">All</option>
102                 <!-- TMPL_LOOP name="itemtypeloop" -->
103                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="description" --></option>
104                                 <!-- TMPL_ELSE -->
105                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="description" --></option>
106                                 <!-- /TMPL_IF -->
107                 <!-- /TMPL_LOOP -->
108             </select></li>
109                         -->
110 </ol></fieldset>
111 <fieldset class="action">    <input type="submit" value="Submit" />
112     <input type="hidden" name="run_report" value="1" /></fieldset>
113 </form>
114         <!-- /TMPL_UNLESS -->
115
116 </div>
117 </div>
118 </div>
119 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->