{% extends "catalogue/base.html" %} {% load i18n %} {% block titleextra %}{% trans "Bulk document upload" %}{% endblock %} {% block leftcolumn %}

{% trans "Bulk documents upload" %}

{% trans "Please submit a ZIP with UTF-8 encoded XML files. Files not ending with .xml will be ignored." %}

{% csrf_token %} {{ form.as_p }}


{% if error_list %}

{% trans "There have been some errors. No files have been added to the repository." %}

{% trans "Offending files" %}

{% if ok_list %}

{% trans "Correct files" %}

{% endif %} {% else %} {% if ok_list %}

{% trans "Files have been successfully uploaded to the repository." %}

{% trans "Uploaded files" %}

{% endif %} {% endif %} {% if skipped_list %}

{% trans "Skipped files" %}

{% trans "Files skipped due to no .xml extension" %}

{% endif %} {% endblock leftcolumn %} {% block rightcolumn %} {% endblock rightcolumn %}