@@ -, +, @@
Staff client, by clicking on the 'Tag editor' button. Notice how
the 'Special relationship:' dropdown menu lists the relationship
codes for MARC21 instead of UNIMARC.
should be listed in the 'Special relationship:' dropdown menu.
---
.../prog/en/includes/auth-finder-search.inc | 41 ++++++++++++++-----
1 file changed, 31 insertions(+), 10 deletions(-)
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/auth-finder-search.inc
+++ a/koha-tmpl/intranet-tmpl/prog/en/includes/auth-finder-search.inc
@@ -1,3 +1,4 @@
+[% USE Koha %]
[% PROCESS 'form-blocks.inc' %]
@@ -143,16 +144,36 @@
[% selected=relationship | html %]
[% PROCESS selectoptionopen value='' %]None specified
- [% PROCESS selectoptionopen value='a' %]a - Earlier heading
- [% PROCESS selectoptionopen value='b' %]b - Later heading
- [% PROCESS selectoptionopen value='d' %]d - Acronym
- [% PROCESS selectoptionopen value='f' %]f - Musical composition
- [% PROCESS selectoptionopen value='g' %]g - Broader term
- [% PROCESS selectoptionopen value='h' %]h - Narrower term
- [% PROCESS selectoptionopen value='i' %]i - Reference instruction phrase in subfield $i
- [% PROCESS selectoptionopen value='n' %]n - Not applicable
- [% PROCESS selectoptionopen value='r' %]r - Relationship designation in $i or $4
- [% PROCESS selectoptionopen value='t' %]t - Immediate parent body
+ [% IF Koha.Preference('marcflavour') == 'MARC21' %]
+ [% PROCESS selectoptionopen value='a' %]a - Earlier heading
+ [% PROCESS selectoptionopen value='b' %]b - Later heading
+ [% PROCESS selectoptionopen value='d' %]d - Acronym
+ [% PROCESS selectoptionopen value='f' %]f - Musical composition
+ [% PROCESS selectoptionopen value='g' %]g - Broader term
+ [% PROCESS selectoptionopen value='h' %]h - Narrower term
+ [% PROCESS selectoptionopen value='i' %]i - Reference instruction phrase in subfield $i
+ [% PROCESS selectoptionopen value='n' %]n - Not applicable
+ [% PROCESS selectoptionopen value='r' %]r - Relationship designation in $i or $4
+ [% PROCESS selectoptionopen value='t' %]t - Immediate parent body
+ [% ELSIF Koha.Preference('marcflavour') == 'UNIMARC' %]
+ [% PROCESS selectoptionopen value='a' %]a = earlier name
+ [% PROCESS selectoptionopen value='b' %]b = later name
+ [% PROCESS selectoptionopen value='c' %]c = official name
+ [% PROCESS selectoptionopen value='d' %]d = acronym / initial / abbreviation
+ [% PROCESS selectoptionopen value='e' %]e = pseudonym
+ [% PROCESS selectoptionopen value='f' %]f = real name
+ [% PROCESS selectoptionopen value='g' %]g = broader term or name
+ [% PROCESS selectoptionopen value='h' %]h = narrower term or name
+ [% PROCESS selectoptionopen value='i' %]i = name in religion
+ [% PROCESS selectoptionopen value='j' %]j = married name
+ [% PROCESS selectoptionopen value='k' %]k = name before marriage
+ [% PROCESS selectoptionopen value='l' %]l = shared pseudonym
+ [% PROCESS selectoptionopen value='m' %]m = secular name
+ [% PROCESS selectoptionopen value='n' %]n = different rule form of a name
+ [% PROCESS selectoptionopen value='o' %]o = attributed name / conventional title of a work
+ [% PROCESS selectoptionopen value='x' %]x = not applicable
+ [% PROCESS selectoptionopen value='z' %]z = other
+ [% END %]
--