log_list.html 185 Bytes
Newer Older
chenyuanjie committed
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>