Line 0
Link Here
|
|
|
1 |
[% USE KohaBranchName %] |
2 |
[% USE KohaDates %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
4 |
<title>Koha › Circulation › In-house use</title> |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
6 |
<link rel="stylesheet" href="[% themelang %]/css/datatables.css" /> |
7 |
[% INCLUDE 'datatables.inc' %] |
8 |
<script type="text/javascript"> |
9 |
//<![CDATA[ |
10 |
|
11 |
$(document).ready(function(){ |
12 |
if ( $("#pending_inhouse_use").length ) { |
13 |
$("#pending_inhouse_use").dataTable($.extend(true, {}, dataTablesDefaults, { |
14 |
"aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], |
15 |
"aoColumns": [ |
16 |
{ "sType": "title-string" }, |
17 |
{ "sType": "html" }, |
18 |
{ "sType": "html" }, |
19 |
null, |
20 |
{ "sType": "html" }, |
21 |
null, |
22 |
null, |
23 |
], |
24 |
'bAutoWidth': false, |
25 |
"sPaginationType": "four_button" |
26 |
})); |
27 |
} |
28 |
}); |
29 |
//]]> |
30 |
</script> |
31 |
|
32 |
</head> |
33 |
<body id="circ_stats" class="circ"> |
34 |
[% INCLUDE 'header.inc' %] |
35 |
[% INCLUDE 'circ-search.inc' %] |
36 |
|
37 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › In-house use</div> |
38 |
|
39 |
<div id="doc3" class="yui-t2"> |
40 |
<div id="bd"> |
41 |
<div id="yui-main"> |
42 |
<div class="yui-b"> |
43 |
<h4>Pending in-house use list</h4> |
44 |
[% IF pending_inhouse_use %] |
45 |
<table id="pending_inhouse_use"> |
46 |
<thead> |
47 |
<tr> |
48 |
<th>Date</th><th>Patron</th><th>Title</th><th>Callnumber</th><th>Barcode</th><th>Library</th><th>Location</th> |
49 |
</tr> |
50 |
</thead> |
51 |
<tbody> |
52 |
[% FOREACH item IN pending_inhouse_use %] |
53 |
<tr> |
54 |
<td><span title="[% item.date_due %]">[% item.date_due | $KohaDates %]</span></td> |
55 |
<td> |
56 |
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% item.borrowernumber %]">[%item.firstname %] [% item.surname %]</a> |
57 |
</td> |
58 |
<td> |
59 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber %]"><strong>[% item.title |html %]</strong></a>[% IF ( item.author ) %], by [% item.author %][% END %][% IF ( item.itemnotes ) %]- <span class="circ-hlt">[% item.itemnotes %]</span>[% END %] |
60 |
</td> |
61 |
<td>[% item.itemcallnumber %]</td> |
62 |
<td> |
63 |
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% item.biblionumber %]&itemnumber=[% item.itemnumber %]#item[% item.itemnumber %]">[% item.barcode %]</a> |
64 |
</td> |
65 |
<td>[% item.branchcode | $KohaBranchName%]</td> |
66 |
<td>[% item.location %]</td> |
67 |
</tr> |
68 |
[% END %] |
69 |
</tbody> |
70 |
</table> |
71 |
[% ELSE %] |
72 |
<h3>No pending in-house use.</h3> |
73 |
[% END %] |
74 |
</div> |
75 |
</div> |
76 |
<div class="yui-b"> |
77 |
[% INCLUDE 'circ-menu.inc' %] |
78 |
</div> |
79 |
</div> |
80 |
[% INCLUDE 'intranet-bottom.inc' %] |