10 lines
180 B
HTML
10 lines
180 B
HTML
{% block content %}
|
|
<ul>
|
|
{% for torrent in torrents %}
|
|
<li>
|
|
<span>{{ torrent.name }}</span>
|
|
<span>{{ torrent.format_eta() }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|