python.fast-api-converter/app/templates/command.html

15 lines
No EOL
317 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Video Liste</title>
</head>
<body>
<h1>Vorhandene Videos</h1>
<ul>
{% for key, video in videos.items() %}
<li>{{ video.source_file }} <b>{{video.finished}}</b></li>
{% endfor %}
</ul>
</body>
</html>