{% extends "base.html" %} {% set section = "status" %} {% block body %}
Version: Downpour v{{ status.version }}
Host: {{ status.host }}

Current Activity (All Users)

Current state {% if status.paused %}Paused{% else %}Running{% endif %}
Active downloads {{ status.active_downloads }}
Queued downloads {{ status.downloads - status.active_downloads }}
Download rate {{ status.downloadrate|filesizeformat|replace('Bytes', 'b') }}/s
Upload rate {{ status.uploadrate|filesizeformat|replace('Bytes', 'b') }}/s
Connections {{ status.connections }}

Disk Space

Download volume {% if status.diskfreepct < 10 %} {{ status.diskfreepct|progressbar(300,style='red',label='free') }} {% elif status.diskfreepct < 30 %} {{ status.diskfreepct|progressbar(300,style='yellow',label='free') }} {% else %} {{ status.diskfreepct|progressbar(300,label='free') }} {% endif %}
User volume {% if status.userdiskfreepct < 10 %} {{ status.userdiskfreepct|progressbar(300,style='red',label='free') }} {% elif status.userdiskfreepct < 30 %} {{ status.userdiskfreepct|progressbar(300,style='yellow',label='free') }} {% else %} {{ status.userdiskfreepct|progressbar(300,label='free') }} {% endif %}
{% endblock %}