{% extends "base_site.html" %}
{% load admin_static %}
{% load i18n %}
{% block extrastyle %}
{% endblock %}
{% block extrascript %}
{% endblock %}
{% block content_title %}
{% 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
Priority
Task
Entry
Composition
Running since
Module
Extra arguments
{% for j in upcoming %}
{{j.priority}}
{{j.id}}
{{j.entry.id}}
{{j.entry.name}}
{{j.created}}
{{j.module}}
{{j.kwargs}}
{% endfor %}
Currently running
Entry
Composition
Running since
Module
Status
Extra arguments
Action
{% for j in project.running %}
{{j.entry.id}}
{{j.entry.name}}
{{j.created}}
{{j.module}}
{{j.last_job_state}}
{{j.kwargs}}
{% if j.last_job_state != 1 %}
{% endif %}
{% endfor %}
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 %}