{% extends "layout.html" %} {% from "macros.html" import render_field, form_tag %} {% block content %}
{% call form_tag(form, enctype="multipart/form-data") %}

{{ form_title }} Info Upload

{{ render_field(form.file_) }} {% endcall %}
{% if request.endpoint == "load_researcher_affiliations" %}

Please format your affiliation data as a comma-separated or tab-separated text file.
The first row of the file must contain only headers matching any of the following allowed field names:

Note: each record in the the affiliation file must contain either an email address or, if an individual has already gone through the Hub, an ORCID iD. Dates are preferred in ISO 8601 format, i.e., YYYY-MM-DD with partial dates accepted, e.g, "2017", "2017-12", and "2017-12-15" are all valid; however, the Hub will try to interpret any dates provided.
Where a field header or value is not provided, the value from your organisation will be used if it's available, e.g., Organisation, City, Country, Disambiguation ID, and Disambiguation Source can be omitted where redundant.

{% endif %} {% endblock %}