mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Simple Fileupload{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Upload drawing file into folder '{{folder}}'</h2>
|
|
<p style="font-family: monospace; font-weight: bold; font-size: 130%; text-align: center">
|
|
<div style = "max-width:35%; margin-left:20%; text-align: center; " >
|
|
<form method ='post' enctype ="multipart/form-data">
|
|
{% csrf_token %}
|
|
<br>
|
|
<input class="fancybutton" type = "file" multiple="multiple"
|
|
placeholder = "Scanfiles" name = "scanfiles" id="scanfiles" />
|
|
|
|
<br><br><br>
|
|
<button class="fancybutton" style="padding: 0.5em 25px; margin-left: 155px" type = "submit" value = "Upload" >
|
|
Upload
|
|
</button>
|
|
</form>
|
|
</div>
|
|
<div style = "max-width:70%; margin-left:20%; text-align: left" >
|
|
<p>Only drawings and drawing config files can be uploaded.
|
|
</div>
|
|
<div style = "max-width:70%; margin-left:20%; text-align: left" >
|
|
{% if filesaved %}
|
|
<p>
|
|
<b>Drawing(s) saved as <br>
|
|
{% for f in actual_saved %}
|
|
<em>{{f}}</em> <br>
|
|
{% endfor %}
|
|
<br><br>Upload more?</b>
|
|
</p>
|
|
<br>
|
|
{% endif %}
|
|
|
|
{% if doesnotexist %}
|
|
<p>No folder of this name.<br>
|
|
It would be created if you upload a file.
|
|
{% else %}
|
|
<strong style="font-size: 110%;">Files:</strong><br>
|
|
{% for f in files %}
|
|
<a href="{{urlfile|urlencode}}/{{f|urlencode}}">{{f}}</a><br />
|
|
{% empty %}
|
|
<p><No files here>
|
|
{% endfor %}
|
|
|
|
|
|
<p><strong style="font-size: 110%;">Directories:</strong><br>
|
|
{% if folder %}
|
|
<a href="{{urldir}}/..">[up]</a><br />
|
|
{% endif %}
|
|
{% for f in dirs %}
|
|
<a href="{{urldir}}/{{f}}">/{{f}}/</a><br />
|
|
{% empty %}
|
|
<p><No subdirectories>
|
|
{% endfor %}
|
|
<p>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 %}
|
|
</div>
|
|
|
|
{% endblock %}
|