Lines 7-15
Link Here
|
7 |
[% USE Price %] |
7 |
[% USE Price %] |
8 |
[% USE AuthorisedValues %] |
8 |
[% USE AuthorisedValues %] |
9 |
[% USE AdditionalContents %] |
9 |
[% USE AdditionalContents %] |
|
|
10 |
[% USE KohaPlugins %] |
10 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
11 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
11 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
12 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
12 |
[% SET OpacMySummaryNote = AdditionalContents.get( location => "OpacMySummaryNote", lang => lang, library => branchcode ) %] |
13 |
[% SET OpacMySummaryNote = AdditionalContents.get( location => "OpacMySummaryNote", lang => lang, library => branchcode ) %] |
|
|
14 |
[% SET CoverImagePlugins = KohaPlugins.get_plugins_opac_cover_images %] |
13 |
[% SET borrower_club_enrollments = logged_in_user.get_club_enrollments %] |
15 |
[% SET borrower_club_enrollments = logged_in_user.get_club_enrollments %] |
14 |
[% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1) %] <!-- 1 => OPAC --> |
16 |
[% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1) %] <!-- 1 => OPAC --> |
15 |
[% SET OverDriveEnabled = ( Koha.Preference( "OPACOverDrive" ) && Koha.Preference('OverDriveLibraryID') && Koha.Preference('OverDriveClientKey') && Koha.Preference('OverDriveClientSecret') ) %] |
17 |
[% SET OverDriveEnabled = ( Koha.Preference( "OPACOverDrive" ) && Koha.Preference('OverDriveLibraryID') && Koha.Preference('OverDriveClientKey') && Koha.Preference('OverDriveClientSecret') ) %] |
Lines 332-338
Link Here
|
332 |
<caption>[% issues_count | html %] Item(s) checked out</caption> |
334 |
<caption>[% issues_count | html %] Item(s) checked out</caption> |
333 |
<thead> |
335 |
<thead> |
334 |
<tr> |
336 |
<tr> |
335 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
337 |
[% IF ( JacketImages || CoverImagePlugins ) %]<th class="nosort"> </th>[% END %] |
336 |
<th class="all anti-the">Title</th> |
338 |
<th class="all anti-the">Title</th> |
337 |
<th>Author</th> |
339 |
<th>Author</th> |
338 |
<th class="psort">Due</th> |
340 |
<th class="psort">Due</th> |
Lines 362-369
Link Here
|
362 |
<tbody> |
364 |
<tbody> |
363 |
[% FOREACH ISSUE IN ISSUES %] |
365 |
[% FOREACH ISSUE IN ISSUES %] |
364 |
[% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %] |
366 |
[% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %] |
365 |
[% IF ( JacketImages ) %] |
367 |
[% IF ( JacketImages || CoverImagePlugins ) %] |
366 |
<td class="jacketcell"> |
368 |
<td class="jacketcell" data-biblionumber="[% ISSUE.biblionumber | html %]"> |
367 |
[% IF ( OPACAmazonCoverImages ) %] |
369 |
[% IF ( OPACAmazonCoverImages ) %] |
368 |
[% IF ( ISSUE.normalized_isbn ) %] |
370 |
[% IF ( ISSUE.normalized_isbn ) %] |
369 |
<a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% ISSUE.normalized_isbn | html %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail"/></a> |
371 |
<a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% ISSUE.normalized_isbn | html %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail"/></a> |
Lines 720-726
Link Here
|
720 |
<!-- OVERDUES TABLE ROWS --> |
722 |
<!-- OVERDUES TABLE ROWS --> |
721 |
<thead> |
723 |
<thead> |
722 |
<tr> |
724 |
<tr> |
723 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
725 |
[% IF ( JacketImages || CoverImagePlugins ) %]<th class="nosort"> </th>[% END %] |
724 |
<th class="all anti-the">Title</th> |
726 |
<th class="all anti-the">Title</th> |
725 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %] |
727 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %] |
726 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
728 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
Lines 738-745
Link Here
|
738 |
<tbody> |
740 |
<tbody> |
739 |
[% FOREACH OVERDUE IN OVERDUES %] |
741 |
[% FOREACH OVERDUE IN OVERDUES %] |
740 |
<tr> |
742 |
<tr> |
741 |
[% IF ( JacketImages ) %] |
743 |
[% IF ( JacketImages || CoverImagePlugins ) %] |
742 |
<td class="jacketcell"> |
744 |
<td class="jacketcell" data-biblionumber="[% OVERDUE.biblionumber | html %]"> |
743 |
[% IF ( OPACAmazonCoverImages ) %] |
745 |
[% IF ( OPACAmazonCoverImages ) %] |
744 |
[% IF ( OVERDUE.normalized_isbn ) %] |
746 |
[% IF ( OVERDUE.normalized_isbn ) %] |
745 |
<a href="http://www.amazon.com/gp/reader/[% OVERDUE.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% OVERDUE.normalized_isbn | html %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail" /></a> |
747 |
<a href="http://www.amazon.com/gp/reader/[% OVERDUE.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% OVERDUE.normalized_isbn | html %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail" /></a> |
Lines 1091-1096
Link Here
|
1091 |
[% Asset.js("js/form-submit.js") | $raw %] |
1093 |
[% Asset.js("js/form-submit.js") | $raw %] |
1092 |
[% INCLUDE 'calendar.inc' %] |
1094 |
[% INCLUDE 'calendar.inc' %] |
1093 |
[% INCLUDE 'datatables.inc' %] |
1095 |
[% INCLUDE 'datatables.inc' %] |
|
|
1096 |
[% CoverImagePlugins | $raw %] |
1094 |
<script> |
1097 |
<script> |
1095 |
var AR_CAPTION_COUNT = _("(%s total)"); |
1098 |
var AR_CAPTION_COUNT = _("(%s total)"); |
1096 |
|
1099 |
|
1097 |
- |
|
|