ReaSpeech-Cloud / app /list_files.html
j
add ls endpoint
8a75d3b
raw
history blame
214 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>