|
Lines 1-4
Link Here
|
| 1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
|
|
2 |
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %] |
| 3 |
[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %] |
| 2 |
[% INCLUDE 'doc-head-open.inc' %] |
4 |
[% INCLUDE 'doc-head-open.inc' %] |
| 3 |
<title>Koha › Catalog › [% IF ( searchdesc ) %]Results of search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% ELSE %]You did not specify any search criteria[% END %]</title> |
5 |
<title>Koha › Catalog › [% IF ( searchdesc ) %]Results of search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% ELSE %]You did not specify any search criteria[% END %]</title> |
| 4 |
[% INCLUDE 'doc-head-close.inc' %] |
6 |
[% INCLUDE 'doc-head-close.inc' %] |
|
Lines 437-456
var holdForPatron = function () {
Link Here
|
| 437 |
<!-- TABLE RESULTS START --> |
439 |
<!-- TABLE RESULTS START --> |
| 438 |
<table> |
440 |
<table> |
| 439 |
<tr> |
441 |
<tr> |
| 440 |
[% IF ( AmazonCoverImages || LocalCoverImages ) %]<th> </th>[% END %] |
442 |
[% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %]<th> </th>[% END %] |
| 441 |
<th colspan="2">Results</th> |
443 |
<th colspan="2">Results</th> |
| 442 |
<th>Location</th> |
444 |
<th>Location</th> |
| 443 |
</tr> |
445 |
</tr> |
| 444 |
<!-- Actual Search Results --> |
446 |
<!-- Actual Search Results --> |
| 445 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
447 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
| 446 |
[% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %] |
448 |
[% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %] |
| 447 |
[% IF ( AmazonCoverImages || LocalCoverImages ) %] |
449 |
[% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %] |
| 448 |
<td> |
450 |
<td> |
| 449 |
[% IF ( LocalCoverImages) %] |
451 |
[% IF ( LocalCoverImages) %] |
| 450 |
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
452 |
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
| 451 |
<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span> |
453 |
<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span> |
| 452 |
</a> |
454 |
</a> |
| 453 |
[% END %] |
455 |
[% END %] |
|
|
456 |
[% IF ( AdlibrisEnabled && SEARCH_RESULT.normalized_isbn ) %] |
| 457 |
<a href="[% AdlibrisURL %]?isbn=[% SEARCH_RESULT.normalized_isbn %]"><img src="[% AdlibrisURL %]?isbn=[% SEARCH_RESULT.normalized_isbn %]" class="adlibris-cover" alt="Adlibris cover image" /></a> |
| 458 |
[% END %] |
| 454 |
[% IF ( AmazonCoverImages ) %] |
459 |
[% IF ( AmazonCoverImages ) %] |
| 455 |
[% IF ( SEARCH_RESULT.normalized_isbn ) %] |
460 |
[% IF ( SEARCH_RESULT.normalized_isbn ) %] |
| 456 |
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
461 |
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
| 457 |
- |
|
|