everything works, needs makeup though

This commit is contained in:
Vladan Popovic 2024-09-15 00:39:25 +02:00
parent 5130450355
commit 464683e9ce
14 changed files with 377 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{% extends 'index.html' %}
{% block content %}
<ul>
{% for torrent in torrents %}
<li>
<span>{{ torrent.name }}</span>
<span>{{ torrent.format_eta() }}</span>
</li>
{% endfor %}
</ul>
{% endblock %}