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 692-698 Note that permanent location is a code, and location may be an authval. Link Here
692
            </tr>
692
            </tr>
693
            [% END %]
693
            [% END %]
694
        </table>
694
        </table>
695
    </div>
695
        [% IF ComponentParts.size == 300 %]
696
        <p>Only 300 results are shown: <a href="/cgi-bin/koha/catalogue/search.pl?q=[% ComponentPartsQuery | uri %]"/>show all component parts</a></p>
697
        [% END %]
696
</div>
698
</div>
697
699
698
[% END %]
700
[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-1 / +4 lines)
Lines 384-390 Link Here
384
                            [% ELSE %]
384
                            [% ELSE %]
385
                            <li id="tab_components">
385
                            <li id="tab_components">
386
                            [% END %]
386
                            [% END %]
387
                                <a href="#components">Components ([% ( ComponentParts.size || 1 ) %])</a>
387
                                <a href="#components">Components ([% ( ComponentParts.size ) %])</a>
388
                            </li>
388
                            </li>
389
                        [% END %]
389
                        [% END %]
390
                        [% IF ( SYNDETICS_TOC ) %]
390
                        [% IF ( SYNDETICS_TOC ) %]
Lines 581-586 Link Here
581
                                </tr>
581
                                </tr>
582
                                [% END %]
582
                                [% END %]
583
                            </table>
583
                            </table>
584
                            [% IF ComponentParts.size == 300 %]
585
                            <p>Only 300 results are shown: <a href="/cgi-bin/koha/catalogue/search.pl?q=[% ComponentPartsQuery | uri %]"/>show all component parts</a></p>
586
                            [% END %]
584
                        </div>
587
                        </div>
585
                    </div>
588
                    </div>
586
                    [% END %]
589
                    [% 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