|
Lines 4-9
Link Here
|
| 4 |
[% USE KohaDates %] |
4 |
[% USE KohaDates %] |
| 5 |
[% SET footerjs = 1 %] |
5 |
[% SET footerjs = 1 %] |
| 6 |
[% USE AuthorisedValues %] |
6 |
[% USE AuthorisedValues %] |
|
|
7 |
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %] |
| 8 |
[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %] |
| 9 |
[% INCLUDE 'browser-strings.inc' %] |
| 7 |
[% IF BiblioDefaultViewmarc %] |
10 |
[% IF BiblioDefaultViewmarc %] |
| 8 |
[% SET DetailPage="MARCdetail.pl" %] |
11 |
[% SET DetailPage="MARCdetail.pl" %] |
| 9 |
[% ELSIF BiblioDefaultViewlabeled_marc %] |
12 |
[% ELSIF BiblioDefaultViewlabeled_marc %] |
|
Lines 353-373
Link Here
|
| 353 |
<!-- TABLE RESULTS START --> |
356 |
<!-- TABLE RESULTS START --> |
| 354 |
<table> |
357 |
<table> |
| 355 |
<tr> |
358 |
<tr> |
| 356 |
[% IF ( AmazonCoverImages || LocalCoverImages ) %]<th> </th>[% END %] |
359 |
[% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %]<th> </th>[% END %] |
| 357 |
<th colspan="2">Results</th> |
360 |
<th colspan="2">Results</th> |
| 358 |
<th>Location</th> |
361 |
<th>Location</th> |
| 359 |
</tr> |
362 |
</tr> |
| 360 |
<!-- Actual Search Results --> |
363 |
<!-- Actual Search Results --> |
| 361 |
[% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] |
364 |
[% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] |
| 362 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
365 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
| 363 |
<tr> |
366 |
[% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %] |
| 364 |
[% IF ( AmazonCoverImages || LocalCoverImages ) %] |
367 |
[% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %] |
| 365 |
<td> |
368 |
<td> |
| 366 |
[% IF ( LocalCoverImages) %] |
369 |
[% IF ( LocalCoverImages) %] |
| 367 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
370 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
| 368 |
<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span> |
371 |
<span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span> |
| 369 |
</a> |
372 |
</a> |
| 370 |
[% END %] |
373 |
[% END %] |
|
|
374 |
[% IF ( AdlibrisEnabled && SEARCH_RESULT.normalized_isbn ) %] |
| 375 |
<a href="[% AdlibrisURL %]?isbn=[% SEARCH_RESULT.normalized_isbn %]"><img src="[% AdlibrisURL %]?isbn=[% SEARCH_RESULT.normalized_isbn %]" class="adlibris-cover" alt="Adlibris cover image" /></a> |
| 376 |
[% END %] |
| 371 |
[% IF ( AmazonCoverImages ) %] |
377 |
[% IF ( AmazonCoverImages ) %] |
| 372 |
[% IF ( SEARCH_RESULT.normalized_isbn ) %] |
378 |
[% IF ( SEARCH_RESULT.normalized_isbn ) %] |
| 373 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
379 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
| 374 |
- |
|
|