18 lines
422 B
HTML
18 lines
422 B
HTML
{% extends "layout.html" %}
|
|
{% block title %} - My seeded torrents{% endblock %}
|
|
{% block body %}
|
|
<table class="table is-bordered is-striped is-narrow is-fullwidth is-hoverable is-size-7">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Link</th>
|
|
<th>Season</th>
|
|
<th>Tools</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|