{% extends "base.html" %} {% set section = "downloads" %} {% block head %} {% endblock %} {% block heading %} {% if status.paused %} Resume All {% else %} Pause All {% endif %}

{{ title }}

{% endblock %} {% block body %}
Upload new torrent:
Download from URL:
Find a download:
{{ status.active_downloads }} active downloads
{{ status.downloadrate|filesizeformat|replace('Bytes','b') }}/s download
{{ status.uploadrate|filesizeformat|replace('Bytes','b') }}/s upload
{{ (status.downloadrate + status.uploadrate)|filesizeformat|replace('Bytes','b') }}/s total
{{ status.connections }} active connections

{% if status.paused %}
Downpour is currently paused.
Resume downloading
{% endif %}
Progress {{ status.progress|progressbar('100%',label='complete') }}   Storage   {% set label = '(' + status.diskfree|filesizeformat + ') free' %} {% if status.diskfreepct < 10 %} {{ status.diskfreepct|progressbar('99%',style='red',label=label) }} {% elif status.diskfreepct < 30 %} {{ status.diskfreepct|progressbar('99%',style='yellow',label=label) }} {% else %} {{ status.diskfreepct|progressbar('99%',label=label) }} {% endif %}
{% if downloads %}
{% for dl in downloads %} {% set client = clientFactory(dl.id) %} {% endfor %}
  {% if sort == 'description' %} {% if sortdir == '+' %} Download {% else %} Download {% endif %} {% else %} Download {% endif %} {% if sort == 'size' %} {% if sortdir == '+' %} Size {% else %} Size {% endif %} {% else %} Size {% endif %} {% if sort == 'status' %} {% if sortdir == '+' %} Status {% else %} Status {% endif %} {% else %} Status {% endif %} {% if sort == 'progress' %} {% if sortdir == '+' %} Progress {% else %} Progress {% endif %} {% else %} Progress {% endif %} {% if sort == 'downloadrate' %} {% if sortdir == '+' %} Down {% else %} Down {% endif %} {% else %} Down {% endif %} {% if sort == 'uploadrate' %} {% if sortdir == '+' %} Up {% else %} Up {% endif %} {% else %} Up {% endif %} {% if sort == 'timeleft' %} {% if sortdir == '+' %} Time Left {% else %} Time Left {% endif %} {% else %} Time Left {% endif %}
{% if client.is_running() %} {{ dl.health|healthmeter }} {% else %}   {% endif %} {{ dl.description }} {% if dl.size %} {{ dl.size|filesizeformat|replace('Bytes','b') }} {% else %} Unknown {% endif %} {% if dl.status_message %} {% endif %} {{ statusdesc[dl.status] }} {% if dl.status_message %} {% endif %} {% if dl.status == statuscode.SEEDING %} {{ dl.seed_progress|progressbar(style='blue') }} {% elif dl.status == statuscode.FAILED %} {{ dl.progress|progressbar(style='red') }} {% else %} {{ dl.progress|progressbar }} {% endif %} {% if client.is_running() %} {{ dl.downloadrate|d(0,true)|filesizeformat|replace('Bytes','b') }}/s {% endif %} {% if client.is_running() and client.can_upload() %} {{ dl.uploadrate|d(0,true)|filesizeformat|replace('Bytes','b') }}/s {% endif %} {% if client.is_running() %} {{ dl.timeleft|intervalformat }} {% else %}   {% endif %} {% if client.is_startable() %} {% if client.is_finished() %} {% else %} {% endif %} {% endif %} {% if client.is_stoppable() %} {% endif %}
Remove all imported downloads
With selected:
{% else %}

There are no downloads in the queue.