Skip to content

Commit

Permalink
Make orcid symbol clickable in output list
Browse files Browse the repository at this point in the history
  • Loading branch information
willu47 committed Dec 18, 2024
1 parent 2004eb5 commit de59fc7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/templates/output_list.j2
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
{% for author in output.authors %}
<l><a href="{{ url_for('author', id=author.uuid) }}">{{ author.first_name}} {{ author.last_name }}</a>
{% if author.orcid %}
<img alt="ORCID logo" src={{url_for('static', path='img/ORCID-iD_icon_vector.svg')}} width="16" height="16" /></a>
<a href="{{ author.orcid }}">
<img alt="ORCID logo" src={{url_for('static', path='img/ORCID-iD_icon_vector.svg')}} width="16" height="16" />
</a>
{% endif %}</l>
{% endfor %}
{% if output.publication_year %}({{ output.publication_year }}){% endif %}
Expand Down

0 comments on commit de59fc7

Please sign in to comment.