{% extends "layout.html" %} {% set title = "Task in progress" %} {% block header %} {% endblock %} {% block container %}
{% if total and total > 1 %} {% if completed > 0 %}
{{ completed }} / {{ total }}
{% else %}
Tasks are waiting in queue...
{% endif %} {% elif running %}
Task is in progress...
{% else %}
Task is waiting in queue...
{% endif %}
{% endblock %}