{% extends "layout.html" %} {% block content %}

Kia ora {{ user.name}},

You are logged into the NZ ORCID Hub through {{ user.organisation.name }}.

You have given the following permission(s) to your ORCID record using the Hub.

{% for user_orcid_data in users_orcid or [] %} {% endfor %}
email address ORCID permission(s)
{% if user_orcid_data.user.email %}{{ user_orcid_data.user.email}} {% endif %} {% if user_orcid_data.scope %} {% if user_orcid_data.scope == "/read-limited,/activities/update" %} {{ (user_orcid_data.org|string() + ' can read and write information to your ORCID record
1. ' + user_orcid_data.org|string() + ' can read your trusted-party information.
2. ' + user_orcid_data.org|string() + ' can create and update research activities') | safe }} {% elif user_orcid_data.scope == "/read-limited" %} {{ user_orcid_data.org|string() + ' can read trusted-party information from your ORCID record'}} {% elif user_orcid_data.scope == "/authenticate" %} {{ user_orcid_data.org|string() + ' knows your authenticated ORCID iD'}} {% else %} {{user_orcid_data.scope}} {% endif %} {% endif %}

No further action from you is needed; you're welcome to log out of the Hub.

{% if session['Should_not_logout_from_ORCID'] %}

To review and manage all your ORCID permissions, log into the settings page of your ORCID record here: {{ profile_url + 'account' }} and review the "Trusted organisations" listed.

{% else %}

To review and manage all your ORCID permissions, log into the settings page of your ORCID record here: {{ profile_url + 'account' }} and review the "Trusted organisations" listed.

{% endif %}
{% endblock %}