{% extends 'base.html' %}
{% block title %}index{% endblock %}
{% block head %}
{% endblock %}
{% block body %}
Pending
Project |
Spider |
Job |
{% for row in pending_rows %}
{{ row['project'] }} |
{{ row['spider'] }} |
{{ row['job'] }} |
{% endfor %}
Running
Project |
Spider |
{% if SHOW_DASHBOARD_JOB_COLUMN %}
Job |
{% endif %}
PID |
Start |
Runtime |
UTF8 |
Stats |
{% if (not HIDE_SCRAPYD_ITEMS) and running_rows and running_rows[0]['url_items'] %}
Items |
{% endif %}
STOP |
FORCESTOP |
{% for row in running_rows %}
{{ row['project'] }} |
{{ row['spider'] }} |
{% if SHOW_DASHBOARD_JOB_COLUMN %}
{{ row['job'] }} |
{% endif %}
{{ row['pid'] }} |
{{ row['start'] }} |
{{ row['runtime'] }} |
UTF8
|
Stats
|
{% if (not HIDE_SCRAPYD_ITEMS) and row['url_items'] %}
Items
|
{% endif %}
{% if SCRAPYD_SERVERS|length > 1 %}
multinode
{% endif %}
STOP
|
FORCESTOP
|
{% endfor %}
Finished (latest to oldest)
Project |
Spider |
{% if SHOW_DASHBOARD_JOB_COLUMN %}
Job |
{% endif %}
Start |
Runtime |
Finish |
UTF8 |
Stats |
{% if (not HIDE_SCRAPYD_ITEMS) and finished_rows and finished_rows[0]['url_items'] %}
Items |
{% endif %}
START |
{% for row in finished_rows[::-1] %}
{{ row['project'] }} |
{{ row['spider'] }} |
{% if SHOW_DASHBOARD_JOB_COLUMN %}
{{ row['job'] }} |
{% endif %}
{{ row['start'] }} |
{{ row['runtime'] }} |
{{ row['finish'] }} |
UTF8
|
Stats
|
{% if (not HIDE_SCRAPYD_ITEMS) and row['url_items'] %}
Items
|
{% endif %}
{% if SCRAPYD_SERVERS|length > 1 %}
multinode
{% endif %}
START
|
{% endfor %}
{% endblock %}