Aberrant/templates/view.html
2019-01-16 12:49:42 -05:00

26 lines
345 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Aberrant</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>Complete</th>
</tr>
</thead>
<tbody>
{% for torrent in torrents %}
<tr>
<td>{{ torrent['name'] }}</td>
<td>{{ torrent['complete'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>