{% extends "base.html" %} {% block title %}Simple Fileupload{% endblock %} {% block content %}

Upload drawing file into folder '{{folder}}'

{% csrf_token %}



Only drawings and drawing config files can be uploaded.

{% if refused %}

Files refused:
{% for f in refused %} {{f}}
{% endfor %}

{% endif %} {% if filesaved %}

Drawing(s) saved as
{% for f in actual_saved %} {{f}}
{% endfor %}
Upload more?

{% endif %}

{% if doesnotexist %}

No folder of this name.
It would be created if you upload a file. {% else %} Files:
{% for f in files %} {{f}}
{% empty %}

<No files here> {% endfor %}

Directories:
{% if folder %} [up]
{% endif %} {% for f in dirs %} /{{f}}/
{% empty %}

<No subdirectories> {% endfor %}

You cannot create folders here, but you can put files into any of the pre-existing folders.

Creating a folder is done by a nerd using ftp or whatever, see our Filezilla documentation.

Note that JPG, PNG and PDF files are refused: this area is reserved for Tunnel and Therion files. You may see some old ones here, pending their removal and replacement, but you cannot upload new ones. TOPO files currently belong in the wallets, not here, but this may change in future. {% endif %}

{% endblock %}