mirror of
https://codeberg.org/hyperreal/go-transmission-stats
synced 2024-11-01 16:53:10 +01:00
70 lines
1.1 KiB
HTML
70 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>hyperreal.coffee: Torrent Stats</title>
|
|
<link rel="icon" type="image/x-icon" href="logo.svg">
|
|
<link href="catppuccin.css" rel="stylesheet">
|
|
</head>
|
|
<style>
|
|
body {
|
|
max-width: 96%;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Torrent Stats</h1>
|
|
<p>As of {{.Date}}</p>
|
|
|
|
<h2>Session Stats</h2>
|
|
<table>
|
|
{{range .SessionStats}}
|
|
<tr>
|
|
<td>{{.Label}}</td>
|
|
<td>{{.Value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
|
|
<h2>Current Stats</h2>
|
|
<table>
|
|
{{range .CurrentStats}}
|
|
<tr>
|
|
<td>{{.Label}}</td>
|
|
<td>{{.Value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
|
|
<h2>Cumulative Stats</h2>
|
|
<table>
|
|
{{range .CumulativeStats}}
|
|
<tr>
|
|
<td>{{.Label}}</td>
|
|
<td>{{.Value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
|
|
<h2>Torrent Info</h2>
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Activity Date</th>
|
|
<th>Total Size</th>
|
|
<th>Leechers</th>
|
|
<th>Seeders</th>
|
|
</tr>
|
|
{{range .TorrentInfo}}
|
|
<tr>
|
|
<td>{{.Name}}</td>
|
|
<td>{{.ActivityDate}}</td>
|
|
<td>{{.TotalSize}}</td>
|
|
<td>{{.Leechers}}</td>
|
|
<td>{{.Seeders}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|