12 lines
208 B
HTML
12 lines
208 B
HTML
{% extends 'index.html' %}
|
|
|
|
{% block content %}
|
|
<ul>
|
|
{% for torrent in torrents %}
|
|
<li>
|
|
<span>{{ torrent.name }}</span>
|
|
<span>{{ torrent.format_eta() }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|