{% extends "page.html" %} {% block toolbar %} Home {% endblock %} {% block main %}

Sorted

Success

{% for torrent, result, reason in success_torrents %} {% endfor %}
torrent result
{{ torrent.name }}
    {% for f in torrent.files %}
  • {{ f.path }} - {{ f.size }} B
  • {% endfor %}
{{ result }}{% if reason %} - {{ reason }}{% endif %}

Failures

{% for torrent, result, reason in failed_torrents %} {% endfor %}
torrent result
{{ torrent.name }}
    {% for f in torrent.files %}
  • {{ f.path }} - {{ f.size }} B
  • {% endfor %}
{{ result }}{% if reason %} - {{ reason }}{% endif %}
{% if not failed_torrents %} {% endif %} {% endblock %}