@@ -, +, @@ instead --- .../bootstrap/en/modules/opac-auth-detail.tt | 23 +++++++++++-------- .../bootstrap/en/modules/opac-detail.tt | 18 +++++++++++---- 2 files changed, 26 insertions(+), 15 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt @@ -188,16 +188,19 @@ [% FOR identifier IN author_identifiers %]
  • [% SWITCH identifier.source.lower %] - [% CASE 'orcid' %]ORCID: - [% CASE 'scopus' %]ScopusID: - [% CASE 'loop' %]loop: - [% CASE 'rid' %]Publons: - [% CASE %][% identifier.source | html %]: - [% END %] - [% IF identifier.linkage %] - [% identifier.number | html %] - [% ELSE %] - [% identifier.number | html %] + [% CASE 'orcid' %] + ORCID: + [% identifier.number | html %] + [% CASE 'scopus' %] + ScopusID: + [% identifier.number | html %] + [% CASE 'loop' %] + loop: + [% identifier.number | html %] + [% CASE 'rid' %] + Publons: + [% identifier.number | html %] + [% CASE %][% identifier.source | html %]: [% identifier.number | html %] [% END %]
  • [% END %] --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -967,11 +967,19 @@ [% FOR identifier IN author.identifiers %]
  • [% SWITCH identifier.source.lower %] - [% CASE 'orcid' %]ORCID: - [% CASE 'scopus' %]ScopusID: - [% CASE 'loop' %]loop: - [% CASE 'rid' %]Publons: - [% CASE %][% identifier.source | html %]: + [% CASE 'orcid' %] + ORCID: + [% identifier.number | html %] + [% CASE 'scopus' %] + ScopusID: + [% identifier.number | html %] + [% CASE 'loop' %] + loop: + [% identifier.number | html %] + [% CASE 'rid' %] + Publons: + [% identifier.number | html %] + [% CASE %][% identifier.source | html %]: [% identifier.number | html %] [% END %] [% IF identifier.linkage %] [% identifier.number | html %] --