Lines 8-16
Link Here
|
8 |
[% USE Price %] |
8 |
[% USE Price %] |
9 |
[% USE AuthorisedValues %] |
9 |
[% USE AuthorisedValues %] |
10 |
[% USE AdditionalContents %] |
10 |
[% USE AdditionalContents %] |
|
|
11 |
[% USE KohaPlugins %] |
11 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
12 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", 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 ) %] |
13 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
13 |
[% SET OpacMySummaryNote = AdditionalContents.get( location => "OpacMySummaryNote", lang => lang, library => branchcode ) %] |
14 |
[% SET OpacMySummaryNote = AdditionalContents.get( location => "OpacMySummaryNote", lang => lang, library => branchcode ) %] |
|
|
15 |
[% SET CoverImagePlugins = KohaPlugins.get_plugins_opac_cover_images %] |
14 |
[% SET borrower_club_enrollments = logged_in_user.get_club_enrollments %] |
16 |
[% SET borrower_club_enrollments = logged_in_user.get_club_enrollments %] |
15 |
[% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1) %] |
17 |
[% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1) %] |
16 |
<!-- 1 => OPAC --> |
18 |
<!-- 1 => OPAC --> |
Lines 337-343
Link Here
|
337 |
<caption>[% issues_count | html %] Item(s) checked out</caption> |
339 |
<caption>[% issues_count | html %] Item(s) checked out</caption> |
338 |
<thead> |
340 |
<thead> |
339 |
<tr> |
341 |
<tr> |
340 |
[% IF ( JacketImages ) %]<th class="no-sort"> </th>[% END %] |
342 |
[% IF ( JacketImages || CoverImagePlugins ) %]<th class="no-sort"> </th>[% END %] |
341 |
<th class="all anti-the">Title</th> |
343 |
<th class="all anti-the">Title</th> |
342 |
<th>Author</th> |
344 |
<th>Author</th> |
343 |
<th>Checked out on</th> |
345 |
<th>Checked out on</th> |
Lines 368-374
Link Here
|
368 |
<tbody> |
370 |
<tbody> |
369 |
[% FOREACH ISSUE IN ISSUES %] |
371 |
[% FOREACH ISSUE IN ISSUES %] |
370 |
<tr [% IF ISSUE.overdue %]class="overdue"[% END %]> |
372 |
<tr [% IF ISSUE.overdue %]class="overdue"[% END %]> |
371 |
[% IF ( JacketImages ) %] |
373 |
[% IF ( JacketImages || CoverImagePlugins ) %] |
372 |
<td class="jacketcell"> |
374 |
<td class="jacketcell"> |
373 |
[% IF ( OPACAmazonCoverImages ) %] |
375 |
[% IF ( OPACAmazonCoverImages ) %] |
374 |
[% IF ( ISSUE.normalized_isbn ) %] |
376 |
[% IF ( ISSUE.normalized_isbn ) %] |
Lines 729-735
Link Here
|
729 |
<!-- OVERDUES TABLE ROWS --> |
731 |
<!-- OVERDUES TABLE ROWS --> |
730 |
<thead> |
732 |
<thead> |
731 |
<tr> |
733 |
<tr> |
732 |
[% IF ( JacketImages ) %]<th class="no-sort"> </th>[% END %] |
734 |
[% IF ( JacketImages || CoverImagePlugins ) %]<th class="no-sort"> </th>[% END %] |
733 |
<th class="all anti-the">Title</th> |
735 |
<th class="all anti-the">Title</th> |
734 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %] |
736 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %] |
735 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
737 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
Lines 748-754
Link Here
|
748 |
<tbody> |
750 |
<tbody> |
749 |
[% FOREACH OVERDUE IN OVERDUES %] |
751 |
[% FOREACH OVERDUE IN OVERDUES %] |
750 |
<tr> |
752 |
<tr> |
751 |
[% IF ( JacketImages ) %] |
753 |
[% IF ( JacketImages || CoverImagePlugins ) %] |
752 |
<td class="jacketcell"> |
754 |
<td class="jacketcell"> |
753 |
[% IF ( OPACAmazonCoverImages ) %] |
755 |
[% IF ( OPACAmazonCoverImages ) %] |
754 |
[% IF ( OVERDUE.normalized_isbn ) %] |
756 |
[% IF ( OVERDUE.normalized_isbn ) %] |
Lines 1079-1084
Link Here
|
1079 |
[% Asset.js("js/form-submit.js") | $raw %] |
1081 |
[% Asset.js("js/form-submit.js") | $raw %] |
1080 |
[% INCLUDE 'calendar.inc' %] |
1082 |
[% INCLUDE 'calendar.inc' %] |
1081 |
[% INCLUDE 'datatables.inc' %] |
1083 |
[% INCLUDE 'datatables.inc' %] |
|
|
1084 |
[% CoverImagePlugins | $raw %] |
1082 |
<script> |
1085 |
<script> |
1083 |
var AR_CAPTION_COUNT = _("(%s total)"); |
1086 |
var AR_CAPTION_COUNT = _("(%s total)"); |
1084 |
|
1087 |
|
1085 |
- |
|
|