Final update to holds queue work: adds link to holds queue
[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 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
8
9 <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>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b">
16
17 <h1>Holds Queue</h1>
18
19 <!-- TMPL_IF NAME="run_report" -->
20
21 <div class="results">
22     <!-- TMPL_IF NAME="total" -->
23         <!-- TMPL_VAR NAME="total" --> items found for <!-- TMPL_VAR NAME="branch" -->
24     <!-- TMPL_ELSE-->
25         No items found
26     <!-- /TMPL_IF -->
27 </div>
28
29     <!-- TMPL_IF NAME="itemsloop" --><table>
30     <tr>
31         <th>Title</th>
32         <th>Call Number</th>
33         <th>Patron</th>
34         <th>Phone Number</th>
35         <th>Date</th>
36         <th>Send To</th>
37     </tr>
38      <!-- TMPL_LOOP NAME="itemsloop"-->
39         <tr>
40             <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->">
41                                                   <!-- TMPL_VAR NAME="title"--></td>
42                                          </a></td>
43             <td><!-- TMPL_VAR NAME="itemcallnumber"--></td>
44             <td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber"-->">
45                                         <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" -->
46                     <!-- TMPL_VAR NAME="barcode"-->
47                 </a></td>
48
49             <td><!-- TMPL_VAR NAME="phone"--></td>
50             <td><!-- TMPL_VAR NAME="reservedate" --></td>
51             <td><!-- TMPL_VAR NAME="pickbranch" --></td>
52         </tr>
53     <!-- /TMPL_LOOP -->
54     </table>
55         <!-- /TMPL_IF --> 
56         <!-- TMPL_ELSE -->
57         
58         <form name="f" action="/cgi-bin/koha/circ/view_holdsqueue.pl" method="post">
59         
60         <li><label for="branchlimit">Library: </label><select name="branchlimit" id="branchlimit">
61                 <option value="">All</option>
62             <!-- TMPL_LOOP name="branchloop" -->
63                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
64                                 <!-- TMPL_ELSE -->
65                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
66                                 <!-- /TMPL_IF -->
67             <!-- /TMPL_LOOP -->
68             </select></li>
69                         <!--  Not working yet
70                         <li><label for="itemtypeslimit">Item Type: </label><select name="itemtypeslimit" id="itemtypeslimit">
71                 <option value="">All</option>
72                 <!-- TMPL_LOOP name="itemtypeloop" -->
73                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="description" --></option>
74                                 <!-- TMPL_ELSE -->
75                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="description" --></option>
76                                 <!-- /TMPL_IF -->
77                 <!-- /TMPL_LOOP -->
78             </select></li>
79                         -->
80 </ol></fieldset>
81 <fieldset class="action">    <input type="submit" value="Submit" />
82     <input type="hidden" name="run_report" value="1" /></fieldset>
83 </form>
84         
85         <!-- /TMPL_IF -->
86
87 </div>
88 </div>
89 <div class="yui-b">
90 <!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
91 </div>
92 </div>
93 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->