View | Details | Raw Unified | Return to bug 29897
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authority-identifiers.inc (-10 / +20 lines)
Lines 1-17 Link Here
1
[% SWITCH identifier.source.lower %]
1
[% SWITCH identifier.source.lower %]
2
[% CASE 'orcid' %]
2
[% CASE 'orcid' %]
3
    <span>ORCID: </span>
3
    <li>
4
    <a href="https://orcid.org/[% identifier.number | url %]">[% identifier.number | html %]</a>
4
        <span>ORCID: </span>
5
        <a href="https://orcid.org/[% identifier.number | url %]">[% identifier.number | html %]</a>
6
    </li>
5
[% CASE 'scopus' %]
7
[% CASE 'scopus' %]
6
    <span>ScopusID: </span>
8
    <li>
7
    <a href="https://www.scopus.com/authid/detail.uri?authorId=[% identifier.number | url %]">[% identifier.number | html %]</a>
9
        <span>ScopusID: </span>
10
        <a href="https://www.scopus.com/authid/detail.uri?authorId=[% identifier.number | url %]">[% identifier.number | html %]</a>
11
    </li>
8
[% CASE 'loop' %]
12
[% CASE 'loop' %]
9
    <span>loop: </span>
13
    <li>
10
    <a href="https://loop.frontiersin.org/people/[% identifier.number | url %]">[% identifier.number | html %]</a>
14
        <span>loop: </span>
15
        <a href="https://loop.frontiersin.org/people/[% identifier.number | url %]">[% identifier.number | html %]</a>
16
    </li>
11
[% CASE 'rid' %]
17
[% CASE 'rid' %]
12
    <span>Publons: </span>
18
    <li>
13
    <a href="https://publons.com/researcher/[% identifier.number | url %]">[% identifier.number | html %]</a>
19
        <span>Publons: </span>
20
        <a href="https://publons.com/researcher/[% identifier.number | url %]">[% identifier.number | html %]</a>
21
    </li>
14
[% CASE 'viaf' %]
22
[% CASE 'viaf' %]
15
    <span>VIAF: </span>
23
    <li>
16
    <a href="https://viaf.org/viaf/[% identifier.number | url %]">[% identifier.number | html %]</a>
24
        <span>VIAF: </span>
25
        <a href="https://viaf.org/viaf/[% identifier.number | url %]">[% identifier.number | html %]</a>
26
    </li>
17
[% END %]
27
[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt (-3 / +1 lines)
Lines 186-194 Link Here
186
                            <span>Identifiers</span>
186
                            <span>Identifiers</span>
187
                            <ul>
187
                            <ul>
188
                            [% FOR identifier IN author_identifiers %]
188
                            [% FOR identifier IN author_identifiers %]
189
                                <li>
189
                                [% PROCESS "authority-identifiers.inc" identifier => identifier %]
190
                                    [% PROCESS "authority-identifiers.inc" identifier => identifier %]
191
                                </li>
192
                            [% END %]
190
                            [% END %]
193
                            </ul>
191
                            </ul>
194
                        </div>
192
                        </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-4 / +1 lines)
Lines 965-973 Link Here
965
                                            <span class="author_name"><a href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% author.authid | uri %]">[% author.name | html %]</a></span>
965
                                            <span class="author_name"><a href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% author.authid | uri %]">[% author.name | html %]</a></span>
966
                                            <ul>
966
                                            <ul>
967
                                            [% FOR identifier IN author.identifiers %]
967
                                            [% FOR identifier IN author.identifiers %]
968
                                                <li>
968
                                                [% PROCESS "authority-identifiers.inc" identifier => identifier %]
969
                                                    [% PROCESS "authority-identifiers.inc" identifier => identifier %]
970
                                                </li>
971
                                            [% END %]
969
                                            [% END %]
972
                                            </ul>
970
                                            </ul>
973
                                        </div>
971
                                        </div>
974
- 

Return to bug 29897