Lines 8-22
Link Here
|
8 |
[% SET searchurl = '/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&marclist=any&operator=contains&orderby=HeadingAsc&value=' %] |
8 |
[% SET searchurl = '/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&marclist=any&operator=contains&orderby=HeadingAsc&value=' %] |
9 |
|
9 |
|
10 |
[% IF marcflavour == 'UNIMARC' %] |
10 |
[% IF marcflavour == 'UNIMARC' %] |
|
|
11 |
[% IF authid %] |
12 |
[% link = BLOCK %]<a href="[% authidurl _ authid %]">[% heading | html %]</a>[% END %] |
13 |
[% ELSE %] |
14 |
[% link = BLOCK %][% heading | html %][% END %] |
15 |
[% END %] |
11 |
[% SWITCH type %] |
16 |
[% SWITCH type %] |
12 |
[% CASE 'broader' %] |
17 |
[% CASE 'broader' %] |
13 |
<span class="BT"><abbr title="Broader Term">BT</abbr>: [% heading | html %]</span> |
18 |
<span class="BT"><abbr title="Broader Term">BT</abbr>: [% link %]</span> |
14 |
[% CASE 'narrower' %] |
19 |
[% CASE 'narrower' %] |
15 |
<span class="NT"><abbr title="Narrower Term">NT</abbr>: [% heading | html %]</span> |
20 |
<span class="NT"><abbr title="Narrower Term">NT</abbr>: [% link %]</span> |
16 |
[% CASE 'seefrom' %] |
21 |
[% CASE 'seefrom' %] |
17 |
<span class="UF"><abbr title="Used For">UF</abbr>: [% heading | html %]</span> |
22 |
<span class="UF"><abbr title="Used For">UF</abbr>: [% link %]</span> |
18 |
[% CASE 'seealso' %] |
23 |
[% CASE 'seealso' %] |
19 |
<span class="RT"><abbr title="Related Term">RT</abbr>: [% heading | html %]</span> |
24 |
<span class="RT"><abbr title="Related Term">RT</abbr>: [% link %]</span> |
20 |
[% END %] |
25 |
[% END %] |
21 |
[% ELSE %] |
26 |
[% ELSE %] |
22 |
<span class="heading"> |
27 |
<span class="heading"> |
Lines 72-78
Link Here
|
72 |
[% IF summary.seefrom %] |
77 |
[% IF summary.seefrom %] |
73 |
<div class="authres_seefrom"> |
78 |
<div class="authres_seefrom"> |
74 |
[% FOREACH see IN summary.seefrom %] |
79 |
[% FOREACH see IN summary.seefrom %] |
75 |
[% PROCESS showreference heading=see.heading linkType="" type=see.type search='' %] |
80 |
[% PROCESS showreference heading=see.heading linkType="" type=see.type authid=see.authid %] |
76 |
[% IF ! loop.last %] ; [% END %] |
81 |
[% IF ! loop.last %] ; [% END %] |
77 |
[% END %] |
82 |
[% END %] |
78 |
</div> |
83 |
</div> |
Lines 80-86
Link Here
|
80 |
[% IF summary.seealso %] |
85 |
[% IF summary.seealso %] |
81 |
<div class="authres_seealso"> |
86 |
<div class="authres_seealso"> |
82 |
[% FOREACH see IN summary.seealso %] |
87 |
[% FOREACH see IN summary.seealso %] |
83 |
[% PROCESS showreference heading=see.heading linkType="" type=see.type search='' %] |
88 |
[% PROCESS showreference heading=see.heading linkType="" type=see.type authid=see.authid %] |
84 |
[% IF ! loop.last %] ; [% END %] |
89 |
[% IF ! loop.last %] ; [% END %] |
85 |
[% END %] |
90 |
[% END %] |
86 |
</div> |
91 |
</div> |
87 |
- |
|
|