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="nosort"> </th>[% END %] |
342 |
[% IF ( JacketImages || CoverImagePlugins ) %]<th class="nosort"> </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 class="psort">Due</th> |
345 |
<th class="psort">Due</th> |
Lines 367-373
Link Here
|
367 |
<tbody> |
369 |
<tbody> |
368 |
[% FOREACH ISSUE IN ISSUES %] |
370 |
[% FOREACH ISSUE IN ISSUES %] |
369 |
<tr [% IF ISSUE.overdue %]class="overdue"[% END %]> |
371 |
<tr [% IF ISSUE.overdue %]class="overdue"[% END %]> |
370 |
[% IF ( JacketImages ) %] |
372 |
[% IF ( JacketImages || CoverImagePlugins ) %] |
371 |
<td class="jacketcell"> |
373 |
<td class="jacketcell"> |
372 |
[% IF ( OPACAmazonCoverImages ) %] |
374 |
[% IF ( OPACAmazonCoverImages ) %] |
373 |
[% IF ( ISSUE.normalized_isbn ) %] |
375 |
[% IF ( ISSUE.normalized_isbn ) %] |
Lines 728-734
Link Here
|
728 |
<!-- OVERDUES TABLE ROWS --> |
730 |
<!-- OVERDUES TABLE ROWS --> |
729 |
<thead> |
731 |
<thead> |
730 |
<tr> |
732 |
<tr> |
731 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
733 |
[% IF ( JacketImages || CoverImagePlugins ) %]<th class="nosort"> </th>[% END %] |
732 |
<th class="all anti-the">Title</th> |
734 |
<th class="all anti-the">Title</th> |
733 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %] |
735 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %] |
734 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
736 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
Lines 746-752
Link Here
|
746 |
<tbody> |
748 |
<tbody> |
747 |
[% FOREACH OVERDUE IN OVERDUES %] |
749 |
[% FOREACH OVERDUE IN OVERDUES %] |
748 |
<tr> |
750 |
<tr> |
749 |
[% IF ( JacketImages ) %] |
751 |
[% IF ( JacketImages || CoverImagePlugins ) %] |
750 |
<td class="jacketcell"> |
752 |
<td class="jacketcell"> |
751 |
[% IF ( OPACAmazonCoverImages ) %] |
753 |
[% IF ( OPACAmazonCoverImages ) %] |
752 |
[% IF ( OVERDUE.normalized_isbn ) %] |
754 |
[% IF ( OVERDUE.normalized_isbn ) %] |
Lines 1076-1081
Link Here
|
1076 |
[% Asset.js("js/form-submit.js") | $raw %] |
1078 |
[% Asset.js("js/form-submit.js") | $raw %] |
1077 |
[% INCLUDE 'calendar.inc' %] |
1079 |
[% INCLUDE 'calendar.inc' %] |
1078 |
[% INCLUDE 'datatables.inc' %] |
1080 |
[% INCLUDE 'datatables.inc' %] |
|
|
1081 |
[% CoverImagePlugins | $raw %] |
1079 |
<script> |
1082 |
<script> |
1080 |
var AR_CAPTION_COUNT = _("(%s total)"); |
1083 |
var AR_CAPTION_COUNT = _("(%s total)"); |
1081 |
|
1084 |
|
1082 |
- |
|
|