2019-01-16 09:33:36 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Aberrant</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-02-13 10:05:11 -05:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>State</th>
|
|
|
|
<th>DL</th>
|
|
|
|
<th>UL</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for torrent in torrents %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ torrent.name }}</td>
|
|
|
|
<td>{{ torrent.state }}</td>
|
|
|
|
<td>{{ torrent.downrate }}</td>
|
|
|
|
<td>{{ torrent.uprate }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-01-16 09:33:36 -05:00
|
|
|
</body>
|
|
|
|
</html>
|