|
Lines 3-8
Link Here
|
| 3 |
[% USE Branches %] |
3 |
[% USE Branches %] |
| 4 |
[% USE ItemTypes %] |
4 |
[% USE ItemTypes %] |
| 5 |
[% USE Price %] |
5 |
[% USE Price %] |
|
|
6 |
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %] |
| 7 |
[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %] |
| 6 |
|
8 |
|
| 7 |
[% INCLUDE 'doc-head-open.inc' %] |
9 |
[% INCLUDE 'doc-head-open.inc' %] |
| 8 |
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Your library home</title> |
10 |
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Your library home</title> |
|
Lines 146-152
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
| 146 |
<caption>[% issues_count %] Item(s) checked out</caption> |
148 |
<caption>[% issues_count %] Item(s) checked out</caption> |
| 147 |
<thead> |
149 |
<thead> |
| 148 |
<tr> |
150 |
<tr> |
| 149 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
151 |
[% IF ( JacketImages || AdlibrisEnabled ) %]<th class="nosort"> </th>[% END %] |
| 150 |
<th class="anti-the">Title</th> |
152 |
<th class="anti-the">Title</th> |
| 151 |
<th class="title-string psort">Due</th> |
153 |
<th class="title-string psort">Due</th> |
| 152 |
[% UNLESS ( item_level_itypes ) %] |
154 |
[% UNLESS ( item_level_itypes ) %] |
|
Lines 170-177
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
| 170 |
<tbody> |
172 |
<tbody> |
| 171 |
[% FOREACH ISSUE IN ISSUES %] |
173 |
[% FOREACH ISSUE IN ISSUES %] |
| 172 |
[% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %] |
174 |
[% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %] |
| 173 |
[% IF ( JacketImages ) %]<td class="jacketcell"> |
175 |
[% IF ( JacketImages || AdlibrisEnabled ) %]<td class="jacketcell"> |
| 174 |
|
176 |
[% IF ( AdlibrisEnabled && ISSUE.normalized_isbn ) %] |
|
|
177 |
<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> |
| 178 |
[% END %] |
| 175 |
[% IF ( OPACAmazonCoverImages ) %] |
179 |
[% IF ( OPACAmazonCoverImages ) %] |
| 176 |
[% IF ( ISSUE.normalized_isbn ) %] |
180 |
[% IF ( ISSUE.normalized_isbn ) %] |
| 177 |
<a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn %]/ref=sib_dp_pt/002-7879865-0184864#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> |
181 |
<a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn %]/ref=sib_dp_pt/002-7879865-0184864#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 407-413
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
| 407 |
<!-- OVERDUES TABLE ROWS --> |
411 |
<!-- OVERDUES TABLE ROWS --> |
| 408 |
<thead> |
412 |
<thead> |
| 409 |
<tr> |
413 |
<tr> |
| 410 |
[% IF ( JacketImages ) %]<th class="nosort"> </th>[% END %] |
414 |
[% IF ( JacketImages || AdlibrisEnabled ) %]<th class="nosort"> </th>[% END %] |
| 411 |
<th class="anti-the">Title</th> |
415 |
<th class="anti-the">Title</th> |
| 412 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %] |
416 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %] |
| 413 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
417 |
[% IF ( show_barcode ) %]<th>Barcode</th>[% END %] |
|
Lines 424-430
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
| 424 |
<tbody> |
428 |
<tbody> |
| 425 |
[% FOREACH OVERDUE IN OVERDUES %] |
429 |
[% FOREACH OVERDUE IN OVERDUES %] |
| 426 |
<tr> |
430 |
<tr> |
| 427 |
[% IF ( JacketImages ) %] |
431 |
[% IF ( JacketImages || AdlibrisEnabled ) %] |
| 428 |
<td class="jacketcell"> |
432 |
<td class="jacketcell"> |
| 429 |
[% IF ( OPACAmazonCoverImages ) %] |
433 |
[% IF ( OPACAmazonCoverImages ) %] |
| 430 |
[% IF ( OVERDUE.normalized_isbn ) %] |
434 |
[% IF ( OVERDUE.normalized_isbn ) %] |
| 431 |
- |
|
|