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

Project: {{ project.name }}

{% if project.name == 'Online_submit' %}
Upload Files
{% endif %} {% 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|slice:":100" %} {% 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 %}
{% 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). If on repeated resets, the task still keeps returning to "state=0", try the "Reset Entry" button (Note: this will recompute the entry from scratch).

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