This commit is contained in:
Vladan Popovic 2024-09-18 02:47:31 +02:00
parent 3e76a70369
commit 7273e90066
5 changed files with 39 additions and 16 deletions

View file

@ -1,9 +1,10 @@
{% block content %}
<ul>
<ul class="torrents">
{% for torrent in torrents %}
<li>
<span>{{ torrent.name }}</span>
<span>{{ torrent.name[:50] }}</span>
<span>{{ torrent.format_eta() }}</span>
<span><a hx-post="/delete">delete</a></span>
</li>
{% endfor %}
</ul>