{% extends "page.html" %} {% block toolbar %} Home Refresh {% if inflight %}Scanning in progress... {% else %}Rescan{% endif %} Blah
Blah Blah {% endblock %} {% block main %}

Completed

{% if inflight %}Scanning... {% else %}Rescan{% endif %}
{% for torid, tor in torrents.items()|tsortbyname %}{% if tor.is_finished %} {% if torid in moves %} {% else %} {% endif %} {% endif %}{% endfor %}
hash name show season actions
{{ torid[0:8] }} {{ tor.name }}
{{ tor.save_path }}
{{ moves[torid].dest.dir }} {{moves[torid].subdest}}? ?

Downloading

{% for tkey, tor in torrents.items()|tsortbyname %}{% if not tor.is_finished %} {% endif %}{% endfor %}
hash name path status progress actions
{{ tkey[0:8] }} {{ tor.name }} {{ tor.save_path }} {% if tor.paused %}paused {% else %}downloading @ {{ tor.peers | sum(attribute='down_speed') }} B/s ({{ tor.eta or "?" }}s) {% endif %} {{ tor.progress|round(2) }}%
{% if tor.paused %} {% else %} {% endif %} {% if tor.progress == 0 %} {% endif %}

Library

Library information

Shows ({{ shows|len }})

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