first go at moving templates to a modules/ dir
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / waitingreserves.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- TMPL_INCLUDE NAME="menus.inc" -->
5 <!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
6
7 <h1>Circulation: Library Holds</h1>
8
9 <div id="mainbloc">
10         <h2 class="circulation">Holds for your library on : <!-- TMPL_VAR NAME="show_date" --></h2>
11         <!-- TMPL_IF NAME="messagetransfert" -->
12                 <div>
13                                 <h2>Hold find for(<!-- TMPL_VAR NAME="nextreservtitle" -->)must transfered</h2>
14                         <p>This hold placed by : <b> <!-- TMPL_VAR NAME="nextreservsurname" --> <!-- TMPL_VAR NAME="nextreservfirstname" --></b> at the library : <b> <!-- TMPL_VAR NAME="branchname" --> </b>, Please transfer this hold.
15                         </p>
16                         <form name="cancelReservewithtransfert" action="waitingreserves.pl" method="post">
17                                 <input type="submit" class="button circulation">
18                         </form>
19                 </div>
20         <!-- /TMPL_IF -->
21         <!-- TMPL_IF NAME="waiting" -->
22                 <div id="bloc25">
23                                 <h2 class="circulation">This hold is waiting</h2>
24                         <p>This hold (<!-- TMPL_VAR NAME="nextreservtitle" -->) was placed by <b> : <!-- TMPL_VAR NAME="nextreservsurname" --> <!-- TMPL_VAR NAME="nextreservfirstname" --></b>,
25                         Please retain this hold.
26                         </p>
27                         <form name="cancelReservewithwaiting" action="waitingreserves.pl" method="post">
28                                 <input type="submit">
29                         </form>
30                 </div>
31         <!-- /TMPL_IF -->
32         <!-- TMPL_UNLESS NAME="message" -->
33         <div id="resultlist">
34             <!-- TMPL_IF NAME="reserveloop" -->
35                 <table>
36                 <tr>
37                         <th class="circulation" colspan="5">Holds at your library</th>
38                 </tr>
39                 <tr>
40                         <th class="circulation">Available since</th>
41                         <th class="circulation">Title</th>
42                         <th class="circulation">Patron</th>
43                         <th class="circulation">Localisation</th>
44                         <th class="circulation">Action</th>
45                 </tr>
46                         <!-- TMPL_LOOP NAME="reserveloop" -->
47                                 <tr <!-- TMPL_IF NAME="messcompa" --> class="problem" <!-- /TMPL_IF -->>
48                                         <td><p><!-- TMPL_VAR NAME="waitingdate" --></p> <!-- TMPL_IF NAME="messcompa" --> Hold Over <!-- /TMPL_IF --></td>
49                                         <td>
50                                                 <p>
51                                                         <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
52                                                         &nbsp; (<b><!-- TMPL_VAR NAME="itemtype" --></b>)
53                                                         <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
54                                                 </p>
55                                         </td>
56                                         <td>
57                                                 <p><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernum"-->"><!-- TMPL_VAR NAME="borrowername" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" --></a><br /><!-- TMPL_VAR NAME="borrowerphone" --><br />
58                                         <!-- TMPL_IF NAME="borrowermail" --><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
59                 <!-- TMPL_VAR NAME="borrowermail" --></a><!--/TMPL_IF-->
60                                                 </p>
61                                         </td>
62                                         <td><p><!-- TMPL_VAR NAME="homebranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p></td>
63                                         <td>
64                                                 <form name="cancelReserve -->" action="waitingreserves.pl" method="post">
65                                                         <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernum" -->">
66                                                         <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR NAME="itemnumber" -->">
67                                                         <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->">
68                                                         <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="homebranch" -->">
69                                                         <!-- TMPL_IF NAME="dotransfer" -->
70                                                         <input type="submit" value="Cancel reserve and return to : <!-- TMPL_VAR NAME="homebranch" -->"> 
71                                                         <!-- TMPL_ELSE -->
72                                                         <input type="submit" value="Cancel reserve" >
73                                                 <!-- /TMPL_IF -->
74                                                 </form>
75                                         </td>
76                                 </tr>
77                         <!-- /TMPL_LOOP -->
78                 </table>
79                 <!-- TMPL_ELSE -->
80                     <p><b>No hold found.</b></p>
81                 <!-- /TMPL_IF -->
82         </div>
83         <!-- /TMPL_UNLESS -->
84 </div>
85 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->