{% extends "page.html" %} {% block toolbar %}
{% endblock %} {% 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 progress actions
{{ torid[0:6] }} {{ tor.name }} {{ tor.save_path }} {{ tor.progress }}%

Shows

{% for show in shows %} {% endfor %}
name path sorting
{{ show.name }} {{ show.dir }} {{ show.mode }}
{% endblock %}