SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 6cdf7f60 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Add link to ORCID page in contributor info table

parent 8d84c63d
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,15 @@ ...@@ -8,7 +8,15 @@
<a href="{% url 'security:security' %}" class="text-warning">&rarr;&nbsp;security&nbsp;check</a> <a href="{% url 'security:security' %}" class="text-warning">&rarr;&nbsp;security&nbsp;check</a>
</td> </td>
</tr> </tr>
<tr><td>ORCID id: </td><td>{{ contributor.profile.orcid_id }}</td></tr> <tr>
<td>ORCID id: </td>
<td>
{% if contributor.profile.orcid_id %}
<a href="https://orcid.org/{{ contributor.profile.orcid_id }}" target="_blank">{{ contributor.profile.orcid_id }}</a>
{% else %}(no ORCID id known)
{% endif %}
</td>
</tr>
<tr> <tr>
<td>Affiliation(s):</td> <td>Affiliation(s):</td>
<td> <td>
...@@ -16,6 +24,15 @@ ...@@ -16,6 +24,15 @@
</td> </td>
</tr> </tr>
<tr><td>Address: </td><td>{{ contributor.address }}</td></tr> <tr><td>Address: </td><td>{{ contributor.address }}</td></tr>
<tr><td>Personal web page: </td><td>{{ contributor.profile.webpage }}</td></tr> <tr>
<td>Personal web page:</td>
<td>
{% if contributor.profile.webpage %}
<a href="{{ contributor.profile.webpage }}" target="_blank">{{ contributor.profile.webpage }}</a>
{% else %}
(no webpage known)
{% endif %}
</td>
</tr>
<tr><td>Accept SciPost emails: </td><td>{{ contributor.profile.accepts_SciPost_emails }}</td></tr> <tr><td>Accept SciPost emails: </td><td>{{ contributor.profile.accepts_SciPost_emails }}</td></tr>
</table> </table>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment