|
Lines 2-16
Link Here
|
| 2 |
[% IF marcflavour == 'UNIMARC' %] |
2 |
[% IF marcflavour == 'UNIMARC' %] |
| 3 |
[% SWITCH type %] |
3 |
[% SWITCH type %] |
| 4 |
[% CASE 'broader' %] |
4 |
[% CASE 'broader' %] |
| 5 |
<span class="BT">[% heading | html %]</span> -- |
5 |
<span class="BT">BT: [% heading | html %]</span> |
| 6 |
[% CASE 'narrower' %] |
6 |
[% CASE 'narrower' %] |
| 7 |
<span class="NT">[% heading | html %]</span> -- |
7 |
<span class="NT">NT: [% heading | html %]</span> |
| 8 |
[% CASE 'narrower' %] |
|
|
| 9 |
<span class="NT">[% heading | html %]</span> -- |
| 10 |
[% CASE 'seefrom' %] |
8 |
[% CASE 'seefrom' %] |
| 11 |
<span class="UF">[% heading | html %]</span> -- |
9 |
<span class="UF">UF: [% heading | html %]</span> |
| 12 |
[% CASE 'seealso' %] |
10 |
[% CASE 'seealso' %] |
| 13 |
<span class="RT">[% heading | html %]</span> -- |
11 |
<span class="RT">RT: [% heading | html %]</span> |
| 14 |
[% END %] |
12 |
[% END %] |
| 15 |
[% ELSE %] |
13 |
[% ELSE %] |
| 16 |
[% IF ( label ) %]<span class="label">[% label | html %]</span>[% END %] |
14 |
[% IF ( label ) %]<span class="label">[% label | html %]</span>[% END %] |
|
Lines 33-48
Link Here
|
| 33 |
[% BLOCK authresult %] |
31 |
[% BLOCK authresult %] |
| 34 |
[% IF ( summary.summary ) %][% summary.summary | html %]:[% END %] |
32 |
[% IF ( summary.summary ) %][% summary.summary | html %]:[% END %] |
| 35 |
[% UNLESS ( summary.summaryonly ) %] |
33 |
[% UNLESS ( summary.summaryonly ) %] |
|
|
34 |
<div class="authorizedheading"> |
| 36 |
[% FOREACH authorize IN summary.authorized %] |
35 |
[% FOREACH authorize IN summary.authorized %] |
| 37 |
<span class="authorizedheading">[% authorize.heading | html %]</span> |
36 |
<span class="authorizedheading">[% authorize.heading | html %]</span> |
| 38 |
[% END %] |
37 |
[% END %] |
|
|
38 |
</div> |
| 39 |
[% IF ( marcflavour == 'UNIMARC' ) %] |
39 |
[% IF ( marcflavour == 'UNIMARC' ) %] |
| 40 |
[% FOREACH note IN summary.notes %] |
40 |
[% IF summary.notes %] |
| 41 |
<span class="note">[% note | html %]</span> |
41 |
<div class="authres_notes"> |
|
|
42 |
[% FOREACH note IN summary.notes %] |
| 43 |
[% note.note | html %]</span> |
| 44 |
[% END %] |
| 45 |
</div> |
| 46 |
[% END %] |
| 47 |
[% IF summary.seealso %] |
| 48 |
<div class="authres_seealso"> |
| 49 |
[% FOREACH see IN summary.seealso %] |
| 50 |
[% PROCESS showreference heading=see.heading label="" type=see.type search='' %] |
| 51 |
[% IF ! loop.last %] ; [% END %] |
| 42 |
[% END %] |
52 |
[% END %] |
| 43 |
[% FOREACH seefro IN summary.seefrom %] |
53 |
</div> |
| 44 |
[% PROCESS showreference heading=seefro.heading label="" type=seefro.type search='' %] |
54 |
[% END %] |
|
|
55 |
[% IF summary.otherscript %] |
| 56 |
<div class="authres_otherscript"> |
| 57 |
[% FOREACH other IN summary.otherscript %] |
| 58 |
[% PROCESS language lang=other.lang | trim %]: |
| 59 |
[% other.term %] |
| 60 |
[% IF ! loop.last %] ; [% END %] |
| 45 |
[% END %] |
61 |
[% END %] |
|
|
62 |
</div> |
| 63 |
[% END %] |
| 64 |
|
| 46 |
[% ELSE %] |
65 |
[% ELSE %] |
| 47 |
[% IF ( summary.seefrom ) %] |
66 |
[% IF ( summary.seefrom ) %] |
| 48 |
[% FOREACH seefro IN summary.seefrom %] |
67 |
[% FOREACH seefro IN summary.seefrom %] |
|
Lines 61-63
Link Here
|
| 61 |
[% END %] |
80 |
[% END %] |
| 62 |
[% END %] |
81 |
[% END %] |
| 63 |
[% END %] |
82 |
[% END %] |
|
|
83 |
[% BLOCK language %] |
| 84 |
[% SWITCH lang %] |
| 85 |
[% CASE ['en', 'eng'] %]English |
| 86 |
[% CASE ['fr', 'fre'] %]French |
| 87 |
[% CASE ['it', 'ita'] %]Italian |
| 88 |
[% CASE ['de', 'ger', 'deu'] %]German |
| 89 |
[% CASE ['es', 'spa'] %]Spanish |
| 90 |
[% CASE %][% lang %] |
| 91 |
[% END %] |
| 92 |
[% END %] |