2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
troggle/templates/dwguploadform.html

73 lines
2.7 KiB
HTML
Raw Normal View History

2021-05-04 02:46:56 +01:00
{% 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"
2021-05-04 20:56:44 +01:00
name = "uploadfiles" id="uploadfiles" />
2021-05-04 02:46:56 +01:00
<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 refused %}
<p>
<b>Files refused: </b><br>
{% for f in refused %}
<em>{{f}}</em> <br>
{% endfor %}
</p>
{% endif %}
2021-05-04 02:46:56 +01:00
{% if filesaved %}
<p>
<b>Drawing(s) saved as </b><br>
2021-05-04 02:46:56 +01:00
{% for f in actual_saved %}
<em>{{f}}</em> <br>
{% endfor %}
<br>Upload more?</b>
2021-05-04 02:46:56 +01:00
</p>
{% endif %}
<hr><br>
{% 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>&lt;No files here&gt;
{% endfor %}
2021-05-04 02:46:56 +01:00
<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>&lt;No subdirectories&gt;
{% endfor %}
<p>You cannot create folders here, but you can put files into any of the pre-existing folders.
2022-08-11 19:57:23 +01:00
<p>Creating a folder is done by a nerd using ftp or whatever, see our <a href="/handbook/computing/fzconfig.html">Filezilla</a> documentation.
2022-03-05 22:16:03 +00:00
<p>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,
2022-08-11 19:57:23 +01:00
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.
2021-05-04 02:46:56 +01:00
{% endif %}
</div>
{% endblock %}