<!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>Date Added</th>
    <th>Total Size</th>
    <th>Peers Connected</th>
    <th>Peers Getting From Us</th>
  </tr>
  {{range .TorrentInfo}}
  <tr>
    <td>{{.Name}}</td>
    <td>{{.DateAdded}}</td>
    <td>{{.TotalSize}}</td>
    <td>{{.PeersConnected}}</td>
    <td>{{.PeersGettingFromUs}}</td>
  </tr>
  {{end}}
</table>
</div>
</body>
</html>