Victor Grousset/tuxayo
9b919ed124
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
70 lines
2.9 KiB
HTML
70 lines
2.9 KiB
HTML
[% BLOCK showhierarchy %]
|
|
[% FOREACH tree IN trees %]
|
|
[% PROCESS showtree tree = tree marc = marc %]
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK showtree %]
|
|
<ul class="hierarchy">
|
|
[% FOREACH node IN tree %]
|
|
<li id="hier[% node.authid | html %]" class="[% node.class | html %] authnode">
|
|
[% IF ( node.current_value ) %]
|
|
<span class="currentauth">[% node.value | html %]</span>
|
|
[% ELSE %]
|
|
<a href="opac-authoritiesdetail.pl?authid=[% node.authid | uri %]&marc=[% marc | uri %]" title="Term">[% node.value | html %]</a>
|
|
[% END %]
|
|
[% IF ( node.children && node.children.size > 0 ) %]
|
|
[% PROCESS showtree tree = node.children marc = marc %]
|
|
[% END %]
|
|
</li>
|
|
[% END %]
|
|
</ul>
|
|
[% END %]
|
|
|
|
[% BLOCK authtypelabel %]
|
|
[% UNLESS ( type=='seefrom' || type=='seealso' || type=='' ) %]
|
|
<span class="type">[% FILTER trim %][% SWITCH type %]
|
|
[% CASE 'earlier' %]<span>Earlier heading</span>
|
|
[% CASE 'later' %]<span>Later heading</span>
|
|
[% CASE 'acronym' %]<span>Acronym</span>
|
|
[% CASE 'musical' %]<span>Musical composition</span>
|
|
[% CASE 'broader' %]<span>Broader heading</span>
|
|
[% CASE 'narrower' %]<span>Narrower heading</span>
|
|
[% CASE %]<span>[% type | html %]</span>
|
|
[% END %][% END %]</span>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK otherscript %]
|
|
[% FOREACH heading IN headings %]
|
|
[% IF heading.category == wantcategory %]
|
|
[% IF heading.direction == 'ltr' %]
|
|
<div class="heading otherscript [% heading.category | html %]">
|
|
<span class="[% heading.category | html %]">[% heading.term | html %]</span>
|
|
</div>
|
|
[% ELSIF heading.direction == 'rtl' %]
|
|
<div class="heading otherscript [% heading.category | html %] rtl">
|
|
<span class="[% heading.category | html %]">[% heading.term | html %]</span>
|
|
</div>
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK authheadingdisplay %]
|
|
[% IF authid %]<a href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% authid | uri %]">[% heading | html %]</a>
|
|
[% ELSIF search %]<a href="/cgi-bin/koha/opac-authorities-home.pl?op=do_search&type=opac&operator=contains&marclist=mainentry&and_or=and&orderby=HeadingAsc&value=[% search | uri %]">[% heading | html %]</a>
|
|
[% ELSE %][% heading | html %]
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK language %]
|
|
[% SWITCH lang %]
|
|
[% CASE ['en', 'eng'] %]<span>English</span>
|
|
[% CASE ['fr', 'fre'] %]<span>French</span>
|
|
[% CASE ['it', 'ita'] %]<span>Italian</span>
|
|
[% CASE ['de', 'ger', 'deu'] %]<span>German</span>
|
|
[% CASE ['es', 'spa'] %]<span>Spanish</span>
|
|
[% CASE %]<span>[% lang | html %]</span>
|
|
[% END %]
|
|
[% END %]
|