78 lines
No EOL
3.5 KiB
Cheetah
78 lines
No EOL
3.5 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Circulation
|
|
<!-- TMPL_IF Name="borrowernumber" -->
|
|
: Checkout to <!-- TMPL_VAR name="surname" -->, <!-- TMPL_VAR name="firstname" -->
|
|
(<!-- TMPL_VAR NAME="cardnumber" -->)
|
|
<!-- /TMPL_IF --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b"><div class="yui-g">
|
|
|
|
<h1>Transfers to do <!-- TMPL_VAR NAME="show_date" --></h1>
|
|
<!-- TMPL_IF name="branchesloop" -->
|
|
<div id="resultlist">
|
|
<!-- TMPL_LOOP NAME="branchesloop" -->
|
|
<!-- TMPL_IF NAME="branchcode" -->
|
|
<table>
|
|
<tr>
|
|
<th colspan="5">Holds waiting for: <!-- TMPL_VAR NAME="branchname" --> </th>
|
|
</tr>
|
|
<tr>
|
|
<th>Date of hold</th>
|
|
<th>Title</th>
|
|
<th>Patron</th>
|
|
<th>Localisation</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="reserv" -->
|
|
<tr <!-- TMPL_IF NAME="messcompa" --> class="problem" <!-- /TMPL_IF -->>
|
|
<td><p><!-- TMPL_VAR NAME="reservedate" --></p> <!-- TMPL_IF NAME="messcompa" --> Hold over <!-- /TMPL_IF --></td>
|
|
<td>
|
|
<p>
|
|
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
|
|
(<b><!-- TMPL_VAR NAME="itemtype" --> </b>)
|
|
<br />Barcode : <!-- TMPL_VAR NAME="barcode" -->
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!--TMPL_VAR Name="borrowernum"-->"><!-- TMPL_VAR NAME="borrowername" --> <!-- TMPL_VAR NAME="borrowerfirstname" --></a><br />
|
|
<!-- TMPL_VAR NAME="borrowerphone" --><br />
|
|
<!-- TMPL_IF NAME="borrowermail" -->
|
|
<a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Reservation: <!-- TMPL_VAR NAME="title" -->">
|
|
<!-- TMPL_VAR NAME="borrowermail" -->
|
|
</a>
|
|
<!--/TMPL_IF-->
|
|
</p>
|
|
</td>
|
|
<td><p><!-- TMPL_VAR NAME="holdingbranch" --> <!-- TMPL_VAR NAME="itemcallnumber" --></p></td>
|
|
<td>
|
|
<form name="dotransfer" action="/cgi-bin/koha/circ/waitingreserves.pl" method="post">
|
|
<input type="hidden" name="itemnumber" value="<!-- TMPL_VAR NAME="itemnumber" -->" />
|
|
<input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
|
|
<input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="branchcode" -->" />
|
|
<input type="submit" value="Transfer this document" />
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</div>
|
|
<!-- TMPL_ELSE -->
|
|
<p>No transfers to do</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" --> |