{% 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

{% if SHOW_DASHBOARD_JOB_COLUMN %} {% endif %} {% if (not HIDE_SCRAPYD_ITEMS) and running_rows and running_rows[0]['url_items'] %} {% endif %} {% for row in running_rows %} {% if SHOW_DASHBOARD_JOB_COLUMN %} {% endif %} {% if (not HIDE_SCRAPYD_ITEMS) and row['url_items'] %} {% endif %} {% endfor %}
Project SpiderJobPID Start Runtime UTF8 StatsItemsSTOP FORCESTOP
{{ row['project'] }} {{ row['spider'] }}{{ row['job'] }}{{ row['pid'] }} {{ row['start'] }} {{ row['runtime'] }} UTF8 Stats Items {% if SCRAPYD_SERVERS|length > 1 %} multinode {% endif %} STOP FORCESTOP

Finished (latest to oldest)

{% if SHOW_DASHBOARD_JOB_COLUMN %} {% endif %} {% if (not HIDE_SCRAPYD_ITEMS) and finished_rows and finished_rows[0]['url_items'] %} {% endif %} {% for row in finished_rows[::-1] %} {% if SHOW_DASHBOARD_JOB_COLUMN %} {% endif %} {% if (not HIDE_SCRAPYD_ITEMS) and row['url_items'] %} {% endif %} {% endfor %}
Project SpiderJobStart Runtime Finish UTF8 StatsItemsSTART
{{ row['project'] }} {{ row['spider'] }}{{ row['job'] }}{{ row['start'] }} {{ row['runtime'] }} {{ row['finish'] }} UTF8 Stats Items {% if SCRAPYD_SERVERS|length > 1 %} multinode {% endif %} START
{% endblock %}