{% extends "base.html" %} {% load static %} {% load account %} {% block title %}User: {{ object.username }}{% endblock %} {% block content %}

{% user_display object %}

{% with object.orcid_uri as orcid_uri %} {% if orcid_uri %} {# The following code is ORCID's recommendation + replacement of the current users data #}

ORCID iD iconorcid.org/{{ object.orcid_id }}
{% else %} No ORCID Id is associated with this user. {% endif %} {% endwith %}

{% if object == request.user %}
{% endif %}
{% endblock content %}