|
Lines 4-9
Link Here
|
| 4 |
[% USE Branches %] |
4 |
[% USE Branches %] |
| 5 |
[% USE ItemTypes %] |
5 |
[% USE ItemTypes %] |
| 6 |
[% USE Price %] |
6 |
[% USE Price %] |
|
|
7 |
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %] |
| 8 |
[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %] |
| 7 |
|
9 |
|
| 8 |
[% SET borrower_club_enrollments = borrower.get_club_enrollments(1) %] |
10 |
[% SET borrower_club_enrollments = borrower.get_club_enrollments(1) %] |
| 9 |
[% SET borrower_enrollable_clubs = borrower.get_enrollable_clubs(1,1) %] |
11 |
[% SET borrower_enrollable_clubs = borrower.get_enrollable_clubs(1,1) %] |
|
Lines 176-182
Link Here
|
| 176 |
<caption>[% issues_count %] Item(s) checked out</caption> |
178 |
<caption>[% issues_count %] Item(s) checked out</caption> |
| 177 |
<thead> |
179 |
<thead> |
| 178 |
<tr> |
180 |
<tr> |
| 179 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
181 |
[% IF ( JacketImages || AdlibrisEnabled ) %]<th class="nosort"> </th>[% END %] |
| 180 |
<th class="anti-the">Title</th> |
182 |
<th class="anti-the">Title</th> |
| 181 |
<th>Author</th> |
183 |
<th>Author</th> |
| 182 |
<th class="title-string psort">Due</th> |
184 |
<th class="title-string psort">Due</th> |
|
Lines 204-211
Link Here
|
| 204 |
<tbody> |
206 |
<tbody> |
| 205 |
[% FOREACH ISSUE IN ISSUES %] |
207 |
[% FOREACH ISSUE IN ISSUES %] |
| 206 |
[% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %] |
208 |
[% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %] |
| 207 |
[% IF ( JacketImages ) %]<td class="jacketcell"> |
209 |
[% IF ( JacketImages || AdlibrisEnabled ) %]<td class="jacketcell"> |
| 208 |
|
210 |
[% IF ( AdlibrisEnabled && ISSUE.normalized_isbn ) %] |
|
|
211 |
<a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]"><img src="[% AdlibrisURL %]?isbn=[% ISSUE.normalized_isbn %]" class="adlibris-cover" alt="Adlibris cover image" /></a> |
| 212 |
[% END %] |
| 209 |
[% IF ( OPACAmazonCoverImages ) %] |
213 |
[% IF ( OPACAmazonCoverImages ) %] |
| 210 |
[% IF ( ISSUE.normalized_isbn ) %] |
214 |
[% IF ( ISSUE.normalized_isbn ) %] |
| 211 |
<a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn %][% AmazonAssocTag %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% ISSUE.normalized_isbn %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail"/></a> |
215 |
<a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn %][% AmazonAssocTag %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% ISSUE.normalized_isbn %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail"/></a> |
|
Lines 466-472
Link Here
|
| 466 |
<!-- OVERDUES TABLE ROWS --> |
470 |
<!-- OVERDUES TABLE ROWS --> |
| 467 |
<thead> |
471 |
<thead> |
| 468 |
<tr> |
472 |
<tr> |
| 469 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
473 |
[% IF ( JacketImages || AdlibrisEnabled ) %]<th class="nosort"> </th>[% END %] |
| 470 |
<th class="anti-the">Title</th> |
474 |
<th class="anti-the">Title</th> |
| 471 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %] |
475 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %] |
| 472 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
476 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
|
Lines 483-489
Link Here
|
| 483 |
<tbody> |
487 |
<tbody> |
| 484 |
[% FOREACH OVERDUE IN OVERDUES %] |
488 |
[% FOREACH OVERDUE IN OVERDUES %] |
| 485 |
<tr> |
489 |
<tr> |
| 486 |
[% IF ( JacketImages ) %] |
490 |
[% IF ( JacketImages || AdlibrisEnabled ) %] |
| 487 |
<td class="jacketcell"> |
491 |
<td class="jacketcell"> |
| 488 |
[% IF ( OPACAmazonCoverImages ) %] |
492 |
[% IF ( OPACAmazonCoverImages ) %] |
| 489 |
[% IF ( OVERDUE.normalized_isbn ) %] |
493 |
[% IF ( OVERDUE.normalized_isbn ) %] |
| 490 |
- |
|
|