{% if tasks %}
{% for task in tasks %}
{{ task.filename }} {{ task.status | upper }}
{{ task.progress | round(1) }}% {{ task.speed or '0' }} KB/s {{ task.eta or '' }}
{% if task.status == 'downloading' or task.status == 'pending' %} {% elif task.status == 'paused' %} {% endif %} {% if task.status == 'failed' or task.status == 'cancelled' %} {% endif %} {% if task.status == 'completed' %} {% endif %}
{% endfor %}
{% else %}

Aucun telechargement en cours

{% endif %}