{% extends 'base.html' %} {% block title %}index{% endblock %} {% block head %} {% endblock %} {% block body %}

Get the list of pending, running and finished jobs of all projects after Scrapyd started.

Pending

{% for row in pending_rows %} {% endfor %}
Project Spider Job
{{ row['project'] }} {{ row['spider'] }} {{ row['job'] }}

Running

{% for row in running_rows %} {% endfor %}
Project Spider PID Start Runtime UTF8 Stats STOP FORCESTOP
{{ row['project'] }} {{ row['spider'] }} {{ row['pid'] }} {{ row['start'] }} {{ row['runtime'] }} UTF8 Stats {% if SCRAPYD_SERVERS|length > 1 %} multinode {% endif %} STOP FORCESTOP

Finished (latest to oldest)

{% for row in finished_rows[::-1] %} {% endfor %}
Project Spider Start Runtime Finish UTF8 Stats START
{{ row['project'] }} {{ row['spider'] }} {{ row['start'] }} {{ row['runtime'] }} {{ row['finish'] }} UTF8 Stats {% if SCRAPYD_SERVERS|length > 1 %} multinode {% endif %} START
{% endblock %}