Cleanup transferstoreceive.pl and .tmpl
[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 <style type="text/css"> p { margin-top: 0; }</style>
5 </head>
6 <body>
7 <!-- TMPL_INCLUDE NAME="header.inc" -->
8 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
9
10 <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>
11
12 <div id="doc" class="yui-t7">
13    
14    <div id="bd">
15         <div id="yui-main">
16         <div class="yui-g">
17
18 <h1>Holds Queue</h1>
19
20 <!-- TMPL_IF NAME="run_report" -->
21
22
23     <!-- TMPL_IF NAME="total" -->
24         <div class="results"><!-- TMPL_VAR NAME="total" --> items found for <!-- TMPL_VAR NAME="branch" --></div>
25     <!-- TMPL_ELSE-->
26         <div class="dialog message">No items found.</div>
27     <!-- /TMPL_IF -->
28
29
30     <!-- TMPL_IF NAME="itemsloop" -->
31 <table id="holdst">
32         <thead>
33         <tr>
34         <th>Title</th>
35         <th>Collection</th>
36         <th>Call Number</th>
37         <th>Barcode</th>
38                 <th>Patron</th>
39         <th>Send To</th>
40         <th>Date</th>
41     </tr>
42         </thead>
43      <tbody><!-- TMPL_LOOP NAME="itemsloop"-->
44         <tr>
45             <td><p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><strong><!-- TMPL_VAR NAME="title" escape="html"--></strong></a></p> 
46                         <p><strong><!-- TMPL_VAR NAME="author" --></strong>
47                         <!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
48                                                                                 <!-- TMPL_IF name="publicationyear" -->, <!-- TMPL_VAR name="publicationyear" -->
49                                                                                 <!-- TMPL_ELSIF name="copyrightdate"-->, <!-- TMPL_VAR name="copyrightdate" --><!-- /TMPL_IF -->
50                                         <!-- TMPL_IF name="pages" -->: <!-- TMPL_VAR name="pages" --> <!-- /TMPL_IF -->
51                                         <!-- TMPL_IF name="size" --><!-- TMPL_VAR name="size" --><!-- /TMPL_IF --> <!-- TMPL_IF NAME="isbn" -->ISBN: <!-- TMPL_VAR NAME="isbn" --><!-- /TMPL_IF --></p>
52                         </td>
53             <td><!-- TMPL_VAR NAME="ccode" --></td>
54             <td><!-- TMPL_VAR NAME="location" --> <!-- TMPL_VAR NAME="itemcallnumber"--> <!-- TMPL_VAR NAME="enumchron" --></td>
55             <td>
56                 <!-- TMPL_IF NAME="item_level_request" -->
57                     <!-- TMPL_VAR NAME="barcode" -->
58                 <!-- TMPL_ELSE -->
59                     <em>Any available copy</em>
60                 <!-- /TMPL_IF -->
61             </td>
62                         <td><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber" -->#reserves"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</a></p> <p><!-- TMPL_VAR NAME="phone" --></p></td>
63             <td><!-- TMPL_VAR NAME="pickbranch" --></td>
64             <td><!-- TMPL_VAR NAME="reservedate" --></td>
65         </tr>
66     <!-- /TMPL_LOOP --></tbody>
67     </table>
68         <!-- /TMPL_IF --> 
69         <!-- /TMPL_IF --> 
70         
71 <!-- TMPL_UNLESS NAME="total" -->
72         <form name="f" action="/cgi-bin/koha/circ/view_holdsqueue.pl" method="post">
73         <fieldset class="rows">
74         <ol>
75         <li><label for="branchlimit">Library: </label><select name="branchlimit" id="branchlimit">
76                 <option value="">All</option>
77             <!-- TMPL_LOOP name="branchloop" -->
78                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
79                                 <!-- TMPL_ELSE -->
80                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
81                                 <!-- /TMPL_IF -->
82             <!-- /TMPL_LOOP -->
83             </select></li>
84                         <!--  Not working yet
85                         <li><label for="itemtypeslimit">Item Type: </label><select name="itemtypeslimit" id="itemtypeslimit">
86                 <option value="">All</option>
87                 <!-- TMPL_LOOP name="itemtypeloop" -->
88                 <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="description" --></option>
89                                 <!-- TMPL_ELSE -->
90                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="description" --></option>
91                                 <!-- /TMPL_IF -->
92                 <!-- /TMPL_LOOP -->
93             </select></li>
94                         -->
95 </ol></fieldset>
96 <fieldset class="action">    <input type="submit" value="Submit" />
97     <input type="hidden" name="run_report" value="1" /></fieldset>
98 </form>
99         <!-- /TMPL_UNLESS -->
100
101 </div>
102 </div>
103 </div>
104 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->