b6ccf669c02a5bce20aaac1a52a2bfa75dad3563
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / transferstoreceive.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Transfers to your library</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.pack.js"></script>
5 <script type="text/JavaScript" language="JavaScript">
6 //<![CDATA[
7 $.tablesorter.addParser({
8     id: 'articles', 
9     is: function(s) {return false;  }, 
10     format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); }, 
11     type: 'text' 
12 });
13          $(document).ready(function() {
14                 $.tablesorter.defaults.widgets = ['zebra']; 
15                 $("#transferst").tablesorter({
16                         sortList: [[1,0]],
17                         headers: { 1: { sorter: 'articles' },4:{sorter:false}}
18                 }); 
19          });
20 //]]>
21 </script>
22 </head>
23 <body>
24 <!-- TMPL_INCLUDE NAME="header.inc" -->
25 <!-- TMPL_INCLUDE NAME="circ-search.inc" -->
26
27 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>  &rsaquo; Transfers to your library</div>
28
29 <div id="doc" class="yui-t7">
30    
31    <div id="bd">
32         <div id="yui-main">
33         <div class="yui-g">
34
35
36         <h1>Transfers made to your library on : <!-- TMPL_VAR NAME="show_date" --></h1>
37         <!-- TMPL_IF name="branchesloop" -->
38             <p>Your library is the destination for the following transfer(s)</p>
39             <div id="resultlist">
40             <!-- TMPL_LOOP NAME="branchesloop" -->
41                 <!-- TMPL_IF NAME="branchcode" -->
42                 <table style="width: 100%" id="transferst">
43                                 <caption>Coming from <!-- TMPL_VAR NAME="branchname" --></caption>
44                 <thead><tr>
45                     <th>Date of transfer</th>
46                     <th>Title</th>
47                     <th>Reserved by </th>
48                     <th>Localisation</th>
49                     <th>Action</th>
50                 </tr></thead>
51                 <tbody><!-- TMPL_LOOP NAME="reserv" -->
52                                 <!-- TMPL_IF NAME="messcompa" -->
53                     <tr class="problem">
54                                         <!-- TMPL_ELSE -->
55                                         <tr>
56                                         <!-- /TMPL_IF -->
57                         <td><p><!-- TMPL_VAR NAME="datetransfer" --></p> <!-- TMPL_IF NAME="messcompa" --> check this transfer<!-- /TMPL_IF --></td>
58                         <td><a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
59                                 &nbsp; (<b><!-- TMPL_VAR NAME="itemtype" --> </b>)
60                                 <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
61                         </td>
62                         <td><!-- TMPL_IF NAME="borrowername" -->
63                             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernum"-->">
64                                     <!-- TMPL_VAR NAME="borrowername" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" -->
65                                 </a>
66                                 <br /><!-- TMPL_VAR NAME="borrowerphone" --><br />
67                                 <!-- TMPL_IF NAME="borrowermail" -->
68                                     <a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
69                                         <!-- TMPL_VAR NAME="borrowermail" -->
70                                     </a>
71                                 <!--/TMPL_IF-->
72                         <!-- TMPL_ELSE -->
73                             <p>
74                             None
75                             </p>
76                         <!-- /TMPL_IF -->
77                         </td>
78                         <td><!-- TMPL_VAR NAME="homebranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></td>
79                         <td>
80                         <!--<form name="dotransfer" action="currenttransfers.pl" method="post">
81                                         <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR NAME="itemnumber" -->">
82                         <input type="submit" value="Cancel this transfer">
83                         </form>-->
84                         </td>   
85                     </tr>
86                 <!-- /TMPL_LOOP -->     </tbody>
87                 </table>
88                 <!-- /TMPL_IF -->
89             <!-- /TMPL_LOOP -->
90             </div>
91         <!-- TMPL_ELSE -->
92             <p>No transfers to receive</p>
93         <!-- /TMPL_IF -->
94
95 </div>
96 </div>
97 </div>
98 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->