log_list.html 185 Bytes
<!doctype html>
<title>Download</title>
<h1>Directory listing</h1>
<hr>
<ul>
    {% for key,value in files.items():%}
    <li><a href="{{value}}">{{key}}</a></li>
    {% endfor %}
</ul>