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

(-)a/catalogue/detail.pl (+1 lines)
Lines 230-235 if ( $showcomp eq 'both' || $showcomp eq 'staff' ) { Link Here
230
              );
230
              );
231
        }
231
        }
232
        $template->param( ComponentParts => $parts );
232
        $template->param( ComponentParts => $parts );
233
        $template->param( ComponentPartsQuery => $biblio->get_components_query );
233
    }
234
    }
234
}
235
}
235
236
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +3 lines)
Lines 687-693 Note that permanent location is a code, and location may be an authval. Link Here
687
            </tr>
687
            </tr>
688
            [% END %]
688
            [% END %]
689
        </table>
689
        </table>
690
    </div>
690
        [% IF ComponentParts.size == 300 %]
691
        <p>Only 300 results are shown: <a href="/cgi-bin/koha/catalogue/search.pl?q=[% ComponentPartsQuery | uri %]"/>show all component parts</a></p>
692
        [% END %]
691
</div>
693
</div>
692
694
693
[% END %]
695
[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-1 / +4 lines)
Lines 408-414 Link Here
408
                            [% ELSE %]
408
                            [% ELSE %]
409
                            <li id="tab_components">
409
                            <li id="tab_components">
410
                            [% END %]
410
                            [% END %]
411
                                <a href="#components">Components ([% ( ComponentParts.size || 1 ) %])</a>
411
                                <a href="#components">Components ([% ( ComponentParts.size ) %])</a>
412
                            </li>
412
                            </li>
413
                        [% END %]
413
                        [% END %]
414
                        [% IF ( SYNDETICS_TOC ) %]
414
                        [% IF ( SYNDETICS_TOC ) %]
Lines 605-610 Link Here
605
                                </tr>
605
                                </tr>
606
                                [% END %]
606
                                [% END %]
607
                            </table>
607
                            </table>
608
                            [% IF ComponentParts.size == 300 %]
609
                            <p>Only 300 results are shown: <a href="/cgi-bin/koha/catalogue/search.pl?q=[% ComponentPartsQuery | uri %]"/>show all component parts</a></p>
610
                            [% END %]
608
                        </div>
611
                        </div>
609
                    </div>
612
                    </div>
610
                    [% END %]
613
                    [% END %]
(-)a/opac/opac-detail.pl (-1 / +1 lines)
Lines 676-681 if ( $showcomp eq 'both' || $showcomp eq 'opac' ) { Link Here
676
              );
676
              );
677
        }
677
        }
678
        $template->param( ComponentParts => $parts );
678
        $template->param( ComponentParts => $parts );
679
        $template->param( ComponentPartsQuery => $biblio->get_components_query );
679
    }
680
    }
680
}
681
}
681
682
682
- 

Return to bug 11175