{% extends "layout_local_experiment.html" %} {% block content %}
{% if type == "web" %}
{% else %} {% endif %} {{ form.hidden_tag() }}
{{ experiment.title }}: {{ legend }}
{{ form.file_type.label(class="form-control-label") }} {% if form.file_type.errors %} {{ form.file_type(class="form-control form-control-lg is-invalid") }}
{% for error in form.file_type.errors %} {{ error }} {% endfor %}
{% else %} {{ form.file_type(class="form-control form-control-lg") }} {% endif %}
{{ form.version.label(class="form-control-label") }} {% if form.version.errors %} {{ form.version(class="form-control form-control-lg is-invalid") }}
{% for error in form.version.errors %} {{ error }} {% endfor %}
{% else %} {{ form.version(class="form-control form-control-lg") }} {% endif %} By pressing command (Mac) or Strg (Windows) while clicking, you can select multiple versions at once. If you select "all versions", all data will be exported, no matter which other versions you select.
{{ form.none_value.label(class="form-control-label") }} {% if form.none_value.errors %} {{ form.none_value(class="form-control form-control-lg is-invalid") }}
{% for error in form.none_value.errors %} {{ error }} {% endfor %}
{% else %} {{ form.none_value(class="form-control form-control-lg") }} {% endif %} Here, you can define a value that should be inserted for missing
{% if form.replace_none_with_empty_string.errors %} {{ form.replace_none_with_empty_string(class="form-check-input is-invalid") }}
{% for error in form.replace_none_with_empty_string.errors %} {{ error }} {% endfor %}
{% else %} {{ form.replace_none_with_empty_string(class="form-check-input") }} {% endif %} {{ form.replace_none_with_empty_string.label(class="form-check-label") }} If you check this box, the input to the field {{ form.none_value.label }} will be discarded.
{{ form.submit(class="btn btn-primary", id="submit")}}
{% endblock content %}