Aberrant/templates/index.html

30 lines
612 B
HTML
Raw Normal View History

2019-01-16 09:33:36 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Aberrant</title>
2019-02-14 15:00:21 -05:00
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='aberrant.css') }}">
2019-01-16 09:33:36 -05:00
</head>
<body>
2019-02-14 15:00:21 -05:00
<table id="torrents">
2019-02-13 10:20:55 -05:00
<thead>
<tr>
<th>Name</th>
<th>State</th>
<th>DL</th>
<th>UL</th>
</tr>
</thead>
<tbody>
{% for torrent in torrents %}
<tr>
2019-02-14 15:00:21 -05:00
<td class="name">{{ torrent.name }}</td>
<td class="state">{{ torrent.state }}</td>
<td class="downrate">{{ torrent.downrate_str }}</td>
<td class="uprate">{{ torrent.uprate_str }}</td>
2019-02-13 10:20:55 -05:00
</tr>
{% endfor %}
</tbody>
</table>
2019-01-16 09:33:36 -05:00
</body>
</html>