Lines 1-11
Link Here
|
1 |
[% USE raw %] |
1 |
[% USE raw %] |
2 |
[% USE Asset %] |
2 |
[% USE Asset %] |
|
|
3 |
[% USE Koha %] |
3 |
[% SET footerjs = 1 %] |
4 |
[% SET footerjs = 1 %] |
4 |
[% PROCESS 'authorities-search-results.inc' %] |
5 |
[% PROCESS 'authorities-search-results.inc' %] |
5 |
[% INCLUDE 'doc-head-open.inc' %] |
6 |
[% INCLUDE 'doc-head-open.inc' %] |
6 |
<title>Cataloging authority plugin › Koha</title> |
7 |
<title>Cataloging authority plugin › Koha</title> |
7 |
[% INCLUDE 'doc-head-close.inc' %] |
8 |
[% INCLUDE 'doc-head-close.inc' %] |
8 |
[% Asset.css("css/addbiblio.css") | $raw %] |
9 |
[% Asset.css("css/addbiblio.css") | $raw %] |
|
|
10 |
<style> |
11 |
.usefor { |
12 |
padding: 0; |
13 |
margin: 0; |
14 |
} |
15 |
.usefor li { |
16 |
list-style-type: none; |
17 |
} |
18 |
</style> |
9 |
</head> |
19 |
</head> |
10 |
|
20 |
|
11 |
<body id="auth_searchresultlist_auth" class="auth"> |
21 |
<body id="auth_searchresultlist_auth" class="auth"> |
Lines 45-50
Link Here
|
45 |
<th>Summary</th> |
55 |
<th>Summary</th> |
46 |
<th>Heading type</th> |
56 |
<th>Heading type</th> |
47 |
<th>Used</th> |
57 |
<th>Used</th> |
|
|
58 |
[% IF Koha.Preference('ShowHeadingUse') %] |
59 |
<th>Heading use</th> |
60 |
[% END %] |
48 |
<th>Get it!</th> |
61 |
<th>Get it!</th> |
49 |
<th>Other action</th> |
62 |
<th>Other action</th> |
50 |
</tr> |
63 |
</tr> |
Lines 53-58
Link Here
|
53 |
<td>[% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %]</td> |
66 |
<td>[% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %]</td> |
54 |
<td>[% resul.summary.label | html %]</td> |
67 |
<td>[% resul.summary.label | html %]</td> |
55 |
<td>[% resul.used | html %] times</td> |
68 |
<td>[% resul.used | html %] times</td> |
|
|
69 |
[% IF Koha.Preference('ShowHeadingUse') %] |
70 |
<td class="actions"><ul class="usefor"> |
71 |
<li>[% IF resul.main %]<i class="fa fa-check"></i>[% ELSE %]<i class="fa fa-times"></i>[% END %] Main/Added Entry</li> |
72 |
<li>[% IF resul.subject %]<i class="fa fa-check"></i>[% ELSE %]<i class="fa fa-times"></i>[% END %] Subject</li> |
73 |
<li>[% IF resul.series %]<i class="fa fa-check"></i>[% ELSE %]<i class="fa fa-times"></i>[% END %] Series Title</li> |
74 |
</ul></td> |
75 |
[% END %] |
56 |
<td> |
76 |
<td> |
57 |
[% IF resul.summary && resul.summary.authorized && resul.summary.authorized.size > 1 %] |
77 |
[% IF resul.summary && resul.summary.authorized && resul.summary.authorized.size > 1 %] |
58 |
[% FOREACH authorized IN resul.summary.authorized %] |
78 |
[% FOREACH authorized IN resul.summary.authorized %] |