{% extends "base.html" %} {% block title %}Export to {{ config['DATAVERSE_NAME'] }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}

Export to Dataverse

{{ service_name }} can export the metadata and files of this object to {{ config['DATAVERSE_NAME'] }}. It will create a draft dataset, which you can then review and publish.

{{ dataverse_export_form.hidden_tag() }}

Select which properties should be exported to {{ config['DATAVERSE_NAME'] }}.

Select all Unselect all
{% for value, path in properties %}
{% endfor %}
{% if dataverse_export_form.tags.choices %}

Select which tags should be exported as keywords to {{ config['DATAVERSE_NAME'] }}.

Select all Unselect all
{% for tag, _ in dataverse_export_form.tags.choices %}
{% endfor %}
{% endif %} {% if dataverse_export_form.files.choices %}

Select which files should be exported to {{ config['DATAVERSE_NAME'] }}.

Select all Unselect all
{% for file_id, file_name in dataverse_export_form.files.choices %}
{% endfor %}
{% endif %}

Select which dataverse this object should be exported to.

Cancel
{% endblock %}