{% extends "base.html" %} {% block title %}Simple Fileupload{% endblock %} {% block content %}
Only drawings and drawing config files can be uploaded.
Files refused:
{% for f in refused %}
{{f}}
{% endfor %}
Drawing(s) saved as
{% for f in actual_saved %}
{{f}}
{% endfor %}
Upload more?
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 %}
Clicking on a filename only shows the file if the drawing file had already been imported into the system as part of a bulk-import as we are matching it against a file recorded in the database. If you only just uploaded it, you will get an error message.
You cannot create folders here, but you can put files into any of the pre-existing folders.
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. {% endif %}