{% extends "layout.html" %} {% block content %}

Running status

Tasks queue

{%if data['running']%} {%endif%} {% for group in ['pending','done','errors'] %} {% for task in data.get(group) | reverse %} {% if group=='pending' %} {% else %} {% if group=='done' %} {% else %} {% endif %} {% endif %} {% endfor %} {% endfor %}
Task ID Status Description Log Date Action
{{ _("Running: {0}").format(data['running'].id)}} Running {{ _("Running: {0}").format(data['running'].description) }} {{ _("Running: {0}").format(data['running'].logs)}} {{ _("Running: {0}").format(data['running'].start_date)}}
{{task.id}} Pending {{task.description}} nothing to show {{task.create_date}}
{{task.id}} Done {{task.description}} {{task.logs}} {{task.create_date}}
{{task.id}} Error {{task.description}} {{task.logs}} {{task.create_date}}
{% endblock %}-