New basic page structure implemented for circ pages: global main menu in the header...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / transferstodo.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Transfers to do</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="circ-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation.pl">Circulation</a> &rsaquo; Transfers to do</div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b"><div class="yui-g">
16
17
18     <h1>Transfers to do <!-- TMPL_VAR NAME="show_date" --></h1>
19     <!-- TMPL_IF name="branchesloop" -->
20     <div id="resultlist">
21         <!-- TMPL_LOOP NAME="branchesloop" -->
22             <!-- TMPL_IF NAME="branchcode" -->
23             <table>
24             <tr>
25                 <th colspan="5">Holds waiting for: <!-- TMPL_VAR NAME="branchname" --> </th>
26             </tr>
27             <tr>
28                 <th>Date of hold</th>
29                 <th>Title</th>
30                 <th>Patron</th>
31                 <th>Localisation</th>
32                 <th>Action</th>
33             </tr>
34             <!-- TMPL_LOOP NAME="reserv" -->
35                 <tr <!-- TMPL_IF NAME="messcompa" --> class="problem" <!-- /TMPL_IF -->>
36                     <td><p><!-- TMPL_VAR NAME="reservedate" --></p> <!-- TMPL_IF NAME="messcompa" --> Hold over <!-- /TMPL_IF --></td>
37                     <td>
38                             <p>
39                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
40                                     &nbsp; (<b><!-- TMPL_VAR NAME="itemtype" --> </b>)
41                                     <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
42                             </p>
43                     </td>
44                     <td>
45                         <p>
46                             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernum"-->"><!-- TMPL_VAR NAME="borrowername" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" --></a><br />
47                             <!-- TMPL_VAR NAME="borrowerphone" --><br />
48                             <!-- TMPL_IF NAME="borrowermail" -->
49                                 <a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
50                                     <!-- TMPL_VAR NAME="borrowermail" -->
51                                 </a>
52                             <!--/TMPL_IF-->
53                         </p>
54                     </td>
55                     <td><p><!-- TMPL_VAR NAME="holdingbranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p></td>
56                     <td>
57                     <form name="dotransfer" action="/cgi-bin/koha/circ/waitingreserves.pl" method="post">
58                         <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR NAME="itemnumber" -->" />
59                         <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
60                         <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="branchcode" -->" />
61                     <input type="submit" value="Transfer this document" />
62                     </form>
63                     </td>
64                 </tr>
65             <!-- /TMPL_LOOP -->
66             </table>
67             <!-- /TMPL_IF -->
68         <!-- /TMPL_LOOP -->
69     </div>
70     <!-- TMPL_ELSE -->
71         <p>No transfers to do</p>
72     <!-- /TMPL_IF -->
73
74 </div>
75 </div>
76 </div>
77
78 <!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
79 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->