Aberrant/templates/index.html

32 lines
759 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Aberrant</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='aberrant.css') }}">
</head>
<body>
<table id="torrents">
<thead>
<tr>
<th class="name">Name</th>
<th class="state">State</th>
<th class="downrate">DL</th>
<th class="uprate">UL</th>
<th class="tracker">Tracker</th>
</tr>
</thead>
<tbody>
{% for torrent in torrents %}
<tr>
<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>
<td class="tracker">{{ torrent.tracker }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>