{% extends "page.html" %} {% block body %}

Completed

{% for torid, tor in torrents.items() %}{% if tor.is_finished %} {% endif %}{% endfor %}
hash name path dest status actions
{{ torid[0:6] }} {{ tor.name }} {{ tor.save_path }} x {{ "complete" if tor.is_finished else "pending" }}

Pending

{% for torid, tor in torrents.items() %}{% if not tor.is_finished %} {% endif %}{% endfor %}
hash name path percent actions
{{ torid[0:6] }} {{ tor.name }} {{ tor.save_path }} {{ tor.progress }}%
{% endblock %}