first go at moving templates to a modules/ dir
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / transferstoreceive.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 <div id="mainbloc">
8         <h1 class="circulation">Transfers made TO your library on : <!-- TMPL_VAR NAME="show_date" --></h1>
9         <!-- TMPL_IF name="branchesloop" -->
10             <p>Your library is the destination for the following transfer(s)</p>
11             <div id="resultlist">
12             <!-- TMPL_LOOP NAME="branchesloop" -->
13                 <!-- TMPL_IF NAME="branchcode" -->
14                 <table>
15                 <tr>
16                         <th class="circulation" colspan="5">Coming from <!-- TMPL_VAR NAME="branchname" --> </th>
17                 </tr>
18                 <tr>
19                     <th class="circulation">Date of transfer</th>
20                     <th class="circulation">Title</th>
21                     <th class="circulation">Reserved by </th>
22                     <th class="circulation">Localisation</th>
23                     <th class="circulation">Action</th>
24                 </tr>
25                 <!-- TMPL_LOOP NAME="reserv" -->
26                     <tr <!-- TMPL_IF NAME="messcompa" --> class="problem" <!-- /TMPL_IF -->>
27                         <td><p><!-- TMPL_VAR NAME="datetransfer" --></p> <!-- TMPL_IF NAME="messcompa" --> check this transfer<!-- /TMPL_IF --></td>
28                         <td>
29                             <p>
30                                 <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
31                                 &nbsp; (<b><!-- TMPL_VAR NAME="itemtype" --> </b>)
32                                 <br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
33                             </p>
34                         </td>
35                         <td>
36                         <!-- TMPL_IF NAME="borrowername" -->
37                             <p>
38                                 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernum"-->">
39                                     <!-- TMPL_VAR NAME="borrowername" --> &nbsp; <!-- TMPL_VAR NAME="borrowerfirstname" -->
40                                 </a>
41                                 <br /><!-- TMPL_VAR NAME="borrowerphone" --><br />
42                                 <!-- TMPL_IF NAME="borrowermail" -->
43                                     <a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
44                                         <!-- TMPL_VAR NAME="borrowermail" -->
45                                     </a>
46                                 <!--/TMPL_IF-->
47                             </p>
48                         <!-- TMPL_ELSE -->
49                             <p>
50                             None
51                             </p>
52                         <!-- /TMPL_IF -->
53                         </td>
54                         <td><p><!-- TMPL_VAR NAME="homebranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p></td>
55                         <td>
56                         <!--<form name="dotransfer" action="currenttransfers.pl" method="post">
57                                         <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR NAME="itemnumber" -->">
58                         <input type="submit" value="Cancel this transfer">
59                         </form>-->
60                         </td>   
61                     </tr>
62                 <!-- /TMPL_LOOP -->     
63                 </table>
64                 <br><br>
65                 <!-- /TMPL_IF -->
66             <!-- /TMPL_LOOP -->
67             </div>
68         <!-- TMPL_ELSE -->
69             <p>No transfers to recieve</p>
70         <!-- /TMPL_IF -->
71 </div>
72 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->