29 lines
434 B
HTML
29 lines
434 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Aberrant</title>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</body>
|
|
</html>
|