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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt (-3 / +7 lines)
Lines 5-10 Link Here
5
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
5
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
6
[% PROCESS 'opac-authorities.inc' %]
6
[% PROCESS 'opac-authorities.inc' %]
7
[% PROCESS 'authorities-search-results.inc' %]
7
[% PROCESS 'authorities-search-results.inc' %]
8
[% PROCESS 'i18n.inc' %]
8
[% BLOCK pagination %]
9
[% BLOCK pagination %]
9
    <nav class="pagination pagination-sm noprint" aria-label="Search results pagination">
10
    <nav class="pagination pagination-sm noprint" aria-label="Search results pagination">
10
        <ul class="pagination">
11
        <ul class="pagination">
Lines 98-104 Link Here
98
                                            <th colspan="2">Authorized headings</th>
99
                                            <th colspan="2">Authorized headings</th>
99
                                            <th>Type of heading</th>
100
                                            <th>Type of heading</th>
100
                                            [% UNLESS ( isEDITORS ) %]
101
                                            [% UNLESS ( isEDITORS ) %]
101
                                                <th>Biblio records</th>
102
                                                <th>Records</th>
102
                                            [% END %]
103
                                            [% END %]
103
                                        </tr>
104
                                        </tr>
104
                                    </thead>
105
                                    </thead>
Lines 110-116 Link Here
110
                                                <td>[% resul.authtype | html %]</td>
111
                                                <td>[% resul.authtype | html %]</td>
111
                                                [% UNLESS ( resul.isEDITORS ) %]
112
                                                [% UNLESS ( resul.isEDITORS ) %]
112
                                                    <td>
113
                                                    <td>
113
                                                         [% IF resul.used > 0 %]<a href="/cgi-bin/koha/opac-search.pl?type=opac&amp;op=do_search&amp;q=an=[% resul.authid | uri %]">[% resul.used | html %] biblios</a>[% ELSE %]0 biblios[% END %]
114
                                                         [% IF resul.used > 0 %]
115
                                                            <a href="/cgi-bin/koha/opac-search.pl?type=opac&amp;op=do_search&amp;q=an=[% resul.authid | uri %]">[% resul.used | html %] [% tn('record', 'records', resul.used ) | html %]</a>
116
                                                        [% ELSE %]
117
                                                            0 records
118
                                                        [% END %]
114
                                                    </td>
119
                                                    </td>
115
                                                [% END %]
120
                                                [% END %]
116
                                            </tr>
121
                                            </tr>
117
- 

Return to bug 30191