This repository has been archived on 2022-05-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Model
Struct
static
templates
files.html
.gitignore
Common.py
README.md
WebMain.py
WinMain.py
api.py
bilibili.py
liveDownloader.py
XiguaLiveDanmakuHelper/templates/files.html
2019-04-08 11:32:05 +08:00

25 lines
510 B
HTML

<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset="UTF-8">
<title>文件</title>
<style>
td{
border: solid 1px lightgray;
}
</style>
</head>
<body>
<h1>所有录像文件</h1>
<table>
<tr>
<td>文件名</td><td>文件大小</td><td>链接</td>
</tr>
{%for i in files %}
<tr>
<td>{{i.name}}</td><td>{{i.size}}</td><td><a href="/files/download/{{i.name}}">下载文件</a></td>
</tr>
{% endfor %}
</table>
</body>
</html>