{% extends "base.html" %} {% block title %}{{ _('Export to %(scicat_name)s', scicat_name=config['SCICAT_NAME']) }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}

{{ _('Export to %(scicat_name)s', scicat_name=config['SCICAT_NAME']) }}

{{ _('%(service_name)s can export the metadata of this object to %(scicat_name)s.', service_name=service_name, scicat_name=config['SCICAT_NAME']) }}

{{ scicat_export_form.hidden_tag() }} {% if scicat_export_form.instrument.choices | length > 1 or scicat_export_form.instrument.choices[0][0] != '-' %}
{% else %} {% endif %} {% if scicat_export_form.sample.choices | length > 1 or scicat_export_form.sample.choices[0][0] != '-' %}
{% else %} {% endif %} {% if scicat_export_form.input_datasets.choices %}
{% endif %}
{% if scicat_export_form.access_groups.choices %}
{% endif %}

{{ _('Select which properties should be exported to %(scicat_name)s.', scicat_name=config['SCICAT_NAME']) }}

{{ _('Select all') }} {{ _('Unselect all') }}
{% for value, path in properties %}
{% endfor %}
{% if scicat_export_form.tags.choices %}

{{ _('Select which tags should be exported as keywords to %(scicat_name)s.', scicat_name=config['SCICAT_NAME']) }}

{{ _('Select all') }} {{ _('Unselect all') }}
{% for tag, _ in scicat_export_form.tags.choices %}
{% endfor %}
{% endif %}
{{ _('Cancel') }}
{% endblock %}