Fixing a bug that occured if Koha wasnt installed, but a cookie was set in the browser
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / circ / transferstodo.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation
3 <!-- TMPL_IF Name="borrowernumber" -->
4 : Checkout to <!-- TMPL_VAR name="surname" -->, <!-- TMPL_VAR name="firstname" -->
5 (<!-- TMPL_VAR NAME="cardnumber" -->)
6 <!-- /TMPL_IF --></title>
7 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
8 <!-- TMPL_INCLUDE NAME="menus.inc" -->
9 <!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
10
11
12 <div id="mainbloc">
13     <h1>Transfers to do <!-- TMPL_VAR NAME="show_date" --></h1>
14     <!-- TMPL_IF name="branchesloop" -->
15     <div id="resultlist">
16         <!-- TMPL_LOOP NAME="branchesloop" -->
17             <!-- TMPL_IF NAME="branchcode" -->
18             <table>
19             <tr>
20                 <th colspan="5">Holds waiting for: <!-- TMPL_VAR NAME="branchname" --> </th>
21             </tr>
22             <tr>
23                 <th>Date of hold</th>
24                 <th>Title</th>
25                 <th>Patron</th>
26                 <th>Localisation</th>
27                 <th>Action</th>
28             </tr>
29             <!-- TMPL_LOOP NAME="reserv" -->
30                 <tr <!-- TMPL_IF NAME="messcompa" --> class="problem" <!-- /TMPL_IF -->>
31                     <td><p><!-- TMPL_VAR NAME="reservedate" --></p> <!-- TMPL_IF NAME="messcompa" --> Hold over <!-- /TMPL_IF --></td>
32                     <td>
33                             <p>
34                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
35                                     &nbsp; (<b><!-- TMPL_VAR NAME="itemtype" --> </b>)
36                                     <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
37                             </p>
38                     </td>
39                     <td>
40                         <p>
41                             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernum"-->"><!-- TMPL_VAR NAME="borrowername" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" --></a><br />
42                             <!-- TMPL_VAR NAME="borrowerphone" --><br />
43                             <!-- TMPL_IF NAME="borrowermail" -->
44                                 <a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
45                                     <!-- TMPL_VAR NAME="borrowermail" -->
46                                 </a>
47                             <!--/TMPL_IF-->
48                         </p>
49                     </td>
50                     <td><p><!-- TMPL_VAR NAME="holdingbranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p></td>
51                     <td>
52                     <form name="dotransfer" action="/cgi-bin/koha/circ/waitingreserves.pl" method="post">
53                         <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR NAME="itemnumber" -->" />
54                         <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
55                         <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="branchcode" -->" />
56                     <input type="submit" value="Transfer this document" />
57                     </form>
58                     </td>
59                 </tr>
60             <!-- /TMPL_LOOP -->
61             </table>
62             <br><br>
63             <!-- /TMPL_IF -->
64         <!-- /TMPL_LOOP -->
65     </div>
66     <!-- TMPL_ELSE -->
67         <p>No transfers to do</p>
68     <!-- /TMPL_IF -->
69 </div>
70 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->