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

15 lines
No EOL
311 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Video Liste</title>
</head>
<body>
<h1>FFmpeg Kommandos der Laufenden Video Konvertierungen</h1>
<ul>
{% for cmd in commands %}
<li>{{ cmd }}</li><br /><br />
{% endfor %}
</ul>
</body>
</html>