Lines 75-101
Link Here
|
75 |
<table class="table table-bordered table-striped"> |
75 |
<table class="table table-bordered table-striped"> |
76 |
<thead> |
76 |
<thead> |
77 |
<tr> |
77 |
<tr> |
78 |
<th>Authorized headings</th> |
78 |
<th colspan="2">Authorized headings</th> |
79 |
<th>Type of heading</th> |
79 |
<th>Type of heading</th> |
80 |
[% UNLESS ( isEDITORS ) %] |
80 |
[% UNLESS ( isEDITORS ) %] |
81 |
<th>Biblio records</th> |
81 |
<th>Biblio records</th> |
82 |
[% END %] |
82 |
[% END %] |
83 |
<th>Full heading</th> |
|
|
84 |
</tr> |
83 |
</tr> |
85 |
</thead> |
84 |
</thead> |
86 |
<tbody> |
85 |
<tbody> |
87 |
[% FOREACH resul IN result %] |
86 |
[% FOREACH resul IN result %] |
88 |
<tr> |
87 |
<tr> |
89 |
<td>[% PROCESS authresult summary=resul.summary %]</td> |
88 |
<td>[% PROCESS authresult summary=resul.summary %]</td> |
|
|
89 |
<td><a href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% resul.authid %]">Details</a> |
90 |
<td>[% resul.authtype %]</td> |
90 |
<td>[% resul.authtype %]</td> |
91 |
[% UNLESS ( resul.isEDITORS ) %] |
91 |
[% UNLESS ( resul.isEDITORS ) %] |
92 |
<td> |
92 |
<td> |
93 |
<a href="/cgi-bin/koha/opac-search.pl?type=opac&op=do_search&q=an=[% resul.authid %]">[% resul.used %] biblios</a> |
93 |
<a href="/cgi-bin/koha/opac-search.pl?type=opac&op=do_search&q=an=[% resul.authid %]">[% resul.used %] biblios</a> |
94 |
</td> |
94 |
</td> |
95 |
[% END %] |
95 |
[% END %] |
96 |
<td> |
|
|
97 |
<a href="opac-authoritiesdetail.pl?authid=[% resul.authid %]">View full heading</a> |
98 |
</td> |
99 |
</tr> |
96 |
</tr> |
100 |
[% END %] |
97 |
[% END %] |
101 |
</tbody> |
98 |
</tbody> |
102 |
- |
|
|