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

{{ _('Import Data') }}

{{ _('%(service_name)s can import objects from .eln files exported by other electronic lab notebooks.', service_name=service_name) }} {{ _('Read more.') }}

{{ upload_eln_file_form.csrf_token() }}
{% if pending_eln_imports %}

{{ _('Pending Files') }}

{{ _('These files were uploaded before but were not imported completely. They will expire one day after being uploaded.')}}

{% for eln_import in pending_eln_imports %} {% endfor %}
{{ _('File Name') }} {{ _('Uploaded at') }}
{{ eln_import.file_name }} {% if eln_import.invalid_reason %} {% endif %} {{ eln_import.upload_utc_datetime | babel_format_datetime }}
{{ delete_eln_import_forms[loop.index0].csrf_token() }} {% if eln_import.is_valid %} {{ _('Review') }} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}