{% extends "base.html" %} {% block title %}{{ _('Export Data') }} — {{ service_name }}{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}

{{ _('Export to Dataverse') }}

{{ _('%(service_name)s can export the metadata and files of this object to %(dataverse_name)s. It will create a draft dataset, which you can then review and publish. To be able to create this dataset for you, %(service_name)s can use the Dataverse API using an API Token associated with your %(dataverse_name)s account. To learn more about API Tokens, see the Dataverse User Guide.', service_name=service_name, dataverse_name=config['DATAVERSE_NAME']) }}

{{ _('To access your API token, visit %(dataverse_name)s', dataverse_name=config['DATAVERSE_NAME'], dataverse_url=config['DATAVERSE_URL']) }}.

{{ dataverse_api_token_form.hidden_tag() }}
{% if had_invalid_api_token %}
{{ _('The API token you entered was invalid.') }}
{% endif %}
{{ _('Cancel') }}
{% endblock %}