{% extends "base.html" %} {% block title %}Simple Fileupload{% endblock %} {% block content %}
Only drawings and drawing config files can be uploaded.
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 works if the drawing file has been imported into the system as part of a bulk-import as we are matching it against a file recorded in the database. {% endif %}