Bug 6003 Display call number on return
[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     <!-- TMPL_IF NAME="itemsloop" -->
33 <table id="holdst">
34         <thead>
35         <tr>
36         <th class="hq-title">Title</th>
37         <th class="hq-collection">Collection</th>
38         <th class="hq-callnumber">Call Number</th>
39         <th class="hq-barcode">Barcode</th>
40         <th class="hq-patron">Patron</th>
41         <th class="hq-sendto">Send To</th>
42         <th class="hq-date">Date</th>
43     </tr>
44         </thead>
45      <tbody><!-- TMPL_LOOP NAME="itemsloop"-->
46         <tr>
47             <td class="hq-title"><p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->"><strong><!-- TMPL_VAR NAME="title" escape="html"--></strong> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_VAR NAME="subtitle" --><!-- /TMPL_IF --></a></p>
48                          <p><strong><!-- TMPL_VAR NAME="author" --></strong>
49                        <div class="hq-pubdata">  <!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
50                                                                                  <!-- TMPL_IF name="publicationyear" -->, <!-- TMPL_VAR name="publicationyear" -->
51                                                                                  <!-- TMPL_ELSIF name="copyrightdate"-->, <!-- TMPL_VAR name="copyrightdate" --><!-- /TMPL_IF -->
52                                          <!-- TMPL_IF name="pages" -->: <!-- TMPL_VAR name="pages" --> <!-- /TMPL_IF -->
53                                          <!-- TMPL_IF name="size" --><!-- TMPL_VAR name="size" --><!-- /TMPL_IF --> <!-- TMPL_IF NAME="isbn" -->ISBN: <!-- TMPL_VAR NAME="isbn" --><!-- /TMPL_IF --></p>
54                         </div>
55                         </td>
56             <td class="hq-collection"><!-- TMPL_VAR NAME="ccode" --></td>
57             <td class="hq-callnumber"><!-- TMPL_VAR NAME="location" --> <!-- TMPL_VAR NAME="itemcallnumber"--> <!-- TMPL_VAR NAME="enumchron" --></td>
58             <td class="hq-barcode">
59                 <!-- TMPL_IF NAME="item_level_request" -->
60                         <em>Only Item: </em><!-- TMPL_VAR NAME="barcode" -->
61                 <!-- TMPL_ELSE -->
62                     <strong><!-- TMPL_VAR NAME="barcode" --></strong></br><em>or Any available</em>
63                 <!-- /TMPL_IF -->
64             </td>
65                         <td class="hq-patron"><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 class="hq-sendto"><!-- TMPL_VAR NAME="pickbranch" --></td>
67             <td class="hq-date"><!-- 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                         <!-- FIXME 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" -->