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