{% extends "template.html" %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}

Running task: #{{ task.id }}

{% if c_width %}
 
{% endif %} {% if f_width %}
 
{% endif %} {% if r_width %}
 
{% endif %} {% if w_width %}
 
{% endif %}

Complete: {{ c_count }} Failed: {{ f_count }} Running: {{ r_count }} Waiting: {{ w_count }}
{% for t in c_list %}{{ t }}
{% endfor %} {% if c_more %}
{{ c_more }} more ...
{% endif %}
{% for t in f_list %}{{ t }}
{% endfor %} {% if f_more %}
{{ f_more }} more ...
{% endif %}
{% for t in r_list %}{{ t }}
{% endfor %} {% if r_more %}
{{ r_more }} more ...
{% endif %}
{% for t in w_list %}{{ t }}
{% endfor %} {% if t_more %}
{{ t_more }} more ...
{% endif %}
{% endblock %}