View | Details | Raw Unified | Return to bug 11328
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+13 lines)
Lines 2012-2017 a.localimage img { Link Here
2012
	margin : 0 .5em;
2012
	margin : 0 .5em;
2013
	padding : .3em;
2013
	padding : .3em;
2014
}
2014
}
2015
2016
.no-image {
2017
    background-color : #FFF;
2018
    border: 1px solid #AAA;
2019
    color : #979797;
2020
    display:block;
2021
    font-size : 86%;
2022
    font-weight : bold;
2023
    text-align : center;
2024
    width : 75px;
2025
    border-radius : 3px;
2026
}
2027
2015
div.pager p {
2028
div.pager p {
2016
	margin: 0;
2029
	margin: 0;
2017
}
2030
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-7 / +14 lines)
Lines 148-153 $('#sort_by').change(function() { Link Here
148
            window.location = '/cgi-bin/koha/catalogue/[% gotoPage %]?biblionumber=' + [% SEARCH_RESULTS.last.biblionumber %] + '&searchid=[% searchid %]';
148
            window.location = '/cgi-bin/koha/catalogue/[% gotoPage %]?biblionumber=' + [% SEARCH_RESULTS.last.biblionumber %] + '&searchid=[% searchid %]';
149
        [% END %]
149
        [% END %]
150
    [% END %]
150
    [% END %]
151
152
[% IF LocalCoverImages %]KOHA.LocalCover.GetCoverFromBibnumber(false);[% END %]
153
151
});
154
});
152
155
153
156
Lines 430-448 var holdForPatron = function () { Link Here
430
                    <!-- TABLE RESULTS START -->
433
                    <!-- TABLE RESULTS START -->
431
                <table>
434
                <table>
432
                    <tr>
435
                    <tr>
433
                        [% IF ( AmazonCoverImages ) %]<th>&nbsp;</th>[% END %]
436
                        [% IF ( AmazonCoverImages || LocalCoverImages ) %]<th>&nbsp;</th>[% END %]
434
                        <th colspan="2">Results</th>
437
                        <th colspan="2">Results</th>
435
                        <th>Location</th>
438
                        <th>Location</th>
436
                    </tr>
439
                    </tr>
437
                        <!-- Actual Search Results -->
440
                        <!-- Actual Search Results -->
438
                        [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
441
                        [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
439
                         [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
442
                         [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
440
                            [% IF ( AmazonCoverImages ) %]
443
                            [% IF ( AmazonCoverImages || LocalCoverImages ) %]
441
                                <td>
444
                                <td>
442
                                    <a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]">
445
                                    [% IF ( LocalCoverImages ) %]
443
									
446
                                        <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span>
444
                                        <img src="[% IF ( SEARCH_RESULT.normalized_isbn ) %]http://images.amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg[% ELSE %]http://g-images.amazon.com/images/G/01/x-site/icons/no-img-sm.gif[% END %]" alt="" class="thumbnail" />
447
                                    [% END %]
445
                                    </a></td>
448
                                    [% IF ( AmazonCoverImages ) %]
449
                                        <a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber |url %]">
450
                                            <img src="[% IF ( SEARCH_RESULT.normalized_isbn ) %]http://images.amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg[% ELSE %]http://g-images.amazon.com/images/G/01/x-site/icons/no-img-sm.gif[% END %]" alt="" class="thumbnail" />
451
                                        </a>
452
                                    [% END %]
453
                                </td>
446
                            [% END %]
454
                            [% END %]
447
                            <td>
455
                            <td>
448
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
456
                                <input type="checkbox" class="selection" id="bib[% SEARCH_RESULT.biblionumber %]" name="biblionumber" value="[% SEARCH_RESULT.biblionumber %]" style="display:none" />
449
- 

Return to bug 11328