{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}

{% csrf_token %}

This tool assists you with importing data into your CATMAID instance. To identify potentially new projects, the tool will look at the files and folders in a working directory. If a sub-directory in the working directory contains a project file (project.yaml), it is treated as a potential project. Please consult the manual to get an idea how such a project file is structured and how the importer expects the data to be laid out.

Please be aware that currently only one specific file and folder layout is supported within a stack folder (source type one).

The working directory is defined as part of the CATMAID settings as {{ datafolder_setting }} and can be further adjusted through the settings below. Additionally, you can define a default base URL to be used if stack mirrors don't provide their URL explicitly. It should make your data directory asscessible from the web.


{% if datafolder_missing %}

Unfortunately, no data source was found in your configuration. Please make sure a data folder is set up.

{% else %}

{{ wizard.form.non_field_errors }} {{ wizard.management_form }} {% for field in wizard.form %}
{{ field.errors }} {{ field.label_tag }} {{ field }}
{{ field.help_text|safe }}
{% endfor %}
{% endif %}
{% if not datafolder_missing %}

{% if wizard.steps.prev %} {% endif %}

{% endif %}
{% endblock %}