Files
ytdlp-site/templates/status.html
2024-10-22 06:19:34 -06:00

50 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.original.Title}}</title>
<link rel="stylesheet" href="/static/style/common.css">
<link rel="stylesheet" href="/static/style/video.css">
<link rel="stylesheet" href="/static/style/status.css">
{{template "header-css" .}}
{{template "footer-css" .}}
</head>
<body>
{{template "header" .}}
<h1>Status</h1>
<div class="status-container">
<div class="ytdlp card">
<h2>yt-dlp</h2>
<div class="raw">
{{.ytdlp}}
</div>
</div>
<div class="ffmpeg card">
<h2>ffmpeg</h2>
<div class="raw">
{{.ffmpeg}}
</div>
</div>
<div class="disk-space card">
<h2>Disk</h2>
{{.used}} MiB ({{.free}} MiB remaning)
</div>
{{ range .files }}
<div class="progress-wrapper">
<progress value="{{.value}}" max="{{.max}}">{{.value}}%</progress>
{{.name}} {{.size}} MiB
{{ if ne .playlist_id "" }}
<a href="/p/{{.playlist_id}}">Playlist {{.playlist_id}}</a>
{{ else if ne .original_id "" }}
<a href="/video/{{.original_id}}">Video {{.original_id}}</a>
{{end}}
</div>
{{ end }}
</div>
{{template "footer" .}}
</body>
</html>