{% extends "base.html" %} {% from "macros.html" import render_field %} {% block content %}

Organisation Confirmation Form

{{ form.hidden_tag() }} {{ render_field(form.name) }} {{ render_field(form.email) }}

{% if organisation.confirmed %}  Take me to ORCID to change my Client details {% else %} ORCID logo Take me to ORCID to obtain my Client ID and Client Secret {% endif %}

{% if organisation.confirmed %} {{ render_field(form.show_api_credentials, data_toggle="collapse", data_target="#show-details") }}
{{ render_field(form.orcid_client_id) }} {{ render_field(form.orcid_secret) }}
{% else %} {{ render_field(form.orcid_client_id) }} {{ render_field(form.orcid_secret) }} {% endif %} {{ render_field(form.country) }} {{ render_field(form.city) }} {{ render_field(form.disambiguated_id, **{"data-toggle": "tooltip", "title": "The best id to use for your organisation, e.g. one of the following: RINGGOLD, FUNDREF, NZBN or EON"}) }} {{ render_field(form.disambiguation_source, **{"data-toggle": "tooltip", "title": "The source of your organisation's disambiguated ID"}) }}
{% endblock %}