{% extends "base_site.html" %} {% load admin_static %} {% load i18n %} {% block extrastyle %} {% endblock %} {% block extrascript %} {% endblock %} {% block content_title %}

Project: {{ project.name }}

{% endblock %} {% block content %}

Summary

# of tasks {{project.task_set.count}}
Completed {{project.completed.count}}
Running {{project.running.count}}
Waiting {{project.waiting.count}}
Failed {{project.failed.count}}
Held {{project.held.count}}

Upcoming tasks

{% for j in upcoming %} {% endfor %}
Priority Task Entry Composition Running since Module Extra arguments
{{j.priority}} {{j.id}} {{j.entry.id}} {{j.entry.name}} {{j.created}} {{j.module}} {{j.kwargs}}

Currently running

{% csrf_token %}

Restart all tasks that should be reset!

{% for j in project.running %} {% if j.last_job_state != 1 %} {% endif %} {% endfor %}
Entry Composition Running since Module Status Extra arguments Action
{{j.entry.id}} {{j.entry.name}} {{j.created}} {{j.module}} {{j.last_job_state}} {{j.kwargs}}
{% csrf_token %}

Note: "status=1" means tasks are running successfully. Otherwise, it is highly recommended to reset the tasks (Press the 'Reset' or 'Restart ALL' button).

{% endblock %} {% block sidebar %} {% endblock %}