{% extends "base.html" %} {% block title %}{{ _('Export to %(dataverse_name)s', dataverse_name=config['DATAVERSE_NAME']) }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% 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.', service_name=service_name, dataverse_name=config['DATAVERSE_NAME']) }}

{{ dataverse_export_form.hidden_tag() }}

{{ _('Select which properties should be exported to %(dataverse_name)s.', dataverse_name=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 %(dataverse_name)s.', dataverse_name=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 %(dataverse_name)s.', dataverse_name=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 %}