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