{% extends "layout_experiment.html" %} {% block custom_css %} {{ dropzone.load_css() }} {{ dropzone.style('border: 2px dashed #0087F7; margin: 10px 0 10px;') }} {% endblock %} {% block content %}
You can upload files with a size up to 10 MB. For larger files, please use an external hosting solution.

Note: The names of uploaded files are subject to a security check. If a filename is insecure, the upload will change it to a secure form. An allowed filename must for example not contain slashes (/), umlauts (äöü) or whitespace. Please make sure that all your filenames are secure.

Example
Not allowed: ../../../../home/username/.bashrc
Allowed: home_username_.bashrc {{ dropzone.create(url_for('web_experiments.upload_resources', experiment_title=experiment.title, username=experiment.author, relative_path=relative_path)) }}
{% endblock content %} {% block custom_js %} {{ dropzone.load_js() }} {{ dropzone.config(custom_options='autoProcessQueue: false, addRemoveLinks: true, parallelUploads: 20') }} {% endblock %}