Aberrant/templates/index.html
2019-02-13 10:20:55 -05:00

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>