{% extends 'layout.html' %} {% block title %} Upload file {% endblock title %} {% block body %}

Upload data to the ASV database

Select an Excel (xlsx) or compressed archive file (xlsx.zip, tar.gz) with a maximum size of {{ "{:.0f}".format(max_file_size/(1024*1024)) }} MB. Then upload.

{{ form.csrf_token }}
{{ form.file(id='file') }} No file selected {{ form.submit(class='btn btn-primary', value='Upload') }}

{% if form and form.file.errors %} {% for error in form.file.errors %} {{ error }} {% endfor %} {% endif %} {% if upload_error %} Sorry, something unexpected happened during file upload. Please contact SBDI support if this error persists. {% endif %} placeholder


{% endblock body %}