Lines 1-4
Link Here
|
1 |
[% BLOCK showreference %] |
1 |
[% BLOCK showreference %] |
|
|
2 |
[% SET authidurl = '/cgi-bin/koha/opac-authoritiesdetail.pl?authid=' %] |
3 |
[% SET searchurl = '/cgi-bin/koha/opac-authorities-home.pl?op=do_search&type=opac&operatorc=contains&marclistc=mainentry&and_orc=and&orderby=HeadingAsc&value=' %] |
2 |
[% IF marcflavour == 'UNIMARC' %] |
4 |
[% IF marcflavour == 'UNIMARC' %] |
3 |
[% SWITCH type %] |
5 |
[% SWITCH type %] |
4 |
[% CASE 'broader' %] |
6 |
[% CASE 'broader' %] |
Lines 11-31
Link Here
|
11 |
<span class="RT">RT: [% heading | html %]</span> |
13 |
<span class="RT">RT: [% heading | html %]</span> |
12 |
[% END %] |
14 |
[% END %] |
13 |
[% ELSE %] |
15 |
[% ELSE %] |
14 |
[% IF ( label ) %]<span class="label">[% label | html %]</span>[% END %] |
16 |
<span class="label"> |
|
|
17 |
[% IF ( type=='seefrom' ) %] |
18 |
used for/see from: |
19 |
[% ELSIF ( type=='seealso' ) %] |
20 |
see also: |
21 |
[% END %] |
22 |
</span> |
15 |
<span class="heading"> |
23 |
<span class="heading"> |
16 |
[% IF ( linkpath && search ) %]<a href="[% link | url %][% search | url %]">[% heading | html %]</a> |
24 |
[% IF ( type=='seealso' ) %] |
17 |
[% ELSE %][% heading | html %][% END %] |
25 |
[% IF ( authid ) %] |
|
|
26 |
<a href="[% authidurl | url %][% authid | url %]">[% heading | html %]</a> |
27 |
[% ELSE %] |
28 |
<a href="[% searchurl | url %][% heading | html %]">[% heading | html %]</a> |
29 |
[% END %] |
30 |
[% ELSE %] |
31 |
[% heading | html %] |
32 |
[% END %] |
18 |
</span> |
33 |
</span> |
19 |
[% UNLESS ( type=='seefrom' || type=='seealso' ) %]<span class="type">[% SWITCH type %] |
34 |
[% UNLESS ( type=='seefrom' || type=='seealso' ) %] |
20 |
[% CASE 'earlier' %](Earlier heading) |
35 |
<span class="type"> |
21 |
[% CASE 'later' %](Later heading) |
36 |
[% SWITCH type %] |
22 |
[% CASE 'acronym' %](Acronym) |
37 |
[% CASE 'earlier' %](Earlier heading) |
23 |
[% CASE 'musical' %](Musical composition) |
38 |
[% CASE 'later' %](Later heading) |
24 |
[% CASE 'broader' %](Broader heading) |
39 |
[% CASE 'acronym' %](Acronym) |
25 |
[% CASE 'narrower' %](Narrower heading) |
40 |
[% CASE 'musical' %](Musical composition) |
26 |
[% CASE 'parent' %](Immediate parent body) |
41 |
[% CASE 'broader' %](Broader heading) |
27 |
[% CASE %][% IF type %]([% type | html %])[% END %] |
42 |
[% CASE 'narrower' %](Narrower heading) |
28 |
[% END %]</span>[% END %] |
43 |
[% CASE 'parent' %](Immediate parent body) |
|
|
44 |
[% CASE %][% IF type %]([% type | html %]) |
45 |
[% END %] |
46 |
[% END %] |
47 |
</span> |
48 |
[% END %] |
29 |
[% END %] |
49 |
[% END %] |
30 |
[% END %] |
50 |
[% END %] |
31 |
[% BLOCK authresult %] |
51 |
[% BLOCK authresult %] |
Lines 65-78
Link Here
|
65 |
[% IF ( summary.seefrom ) %] |
85 |
[% IF ( summary.seefrom ) %] |
66 |
[% FOREACH seefro IN summary.seefrom %] |
86 |
[% FOREACH seefro IN summary.seefrom %] |
67 |
<div class="seefrom authref"> |
87 |
<div class="seefrom authref"> |
68 |
[% PROCESS showreference heading=seefro.heading label="used for/see from:" type=seefro.type search='' %] |
88 |
[% PROCESS showreference |
|
|
89 |
heading=seefro.heading |
90 |
type=seefro.type |
91 |
%] |
69 |
</div> |
92 |
</div> |
70 |
[% END %] |
93 |
[% END %] |
71 |
[% END %] |
94 |
[% END %] |
72 |
[% IF ( summary.seealso ) %] |
95 |
[% IF ( summary.seealso ) %] |
73 |
[% FOREACH seeals IN summary.seealso %] |
96 |
[% FOREACH seeals IN summary.seealso %] |
74 |
<div class="seealso authref"> |
97 |
<div class="seealso authref"> |
75 |
[% PROCESS showreference heading=seeals.heading label="see also:" type=seeals.type linkpath=link search=seeals.search %] |
98 |
[% PROCESS showreference |
|
|
99 |
heading=seeals.heading |
100 |
type=seeals.type |
101 |
authid=seeals.authid |
102 |
%] |
76 |
</div> |
103 |
</div> |
77 |
[% END %] |
104 |
[% END %] |
78 |
[% END %] |
105 |
[% END %] |