log_list.html 185 Bytes Edit 1 2 3 4 5 6 7 8 9 <!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>