{% 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 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 %}

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 %}

{% endblock %}