samgis / static /list_files.html
aletrn's picture
[feat] add option to donwload files written in custom path folder
6c56c30
raw
history blame contribute delete
No virus
213 Bytes
<html>
<head>
<title>Files</title>
</head>
<body>
<h1>Files:</h1>
<ul>
{% for file in files %}
<li><a href="{{file}}">{{file}}</a></li>
{% endfor %}
</ul>
</body>
</html>