Project |
Spiders |
Last Run |
Last Status |
Last Items |
{% for project in projects %}
{{project.name}} |
{% if project.spiders %}
{% for spider in project.spiders[0:1]%}
{{spider.name}}
|
{% if spider.historical_jobs %}
{{spider.historical_jobs[0].start_time}}
{% end %}
|
{% if spider.historical_jobs %}
{% if spider.historical_jobs[0].status == 2 %}
SUCCESS |
{% else %}
FAIL |
{% end %}
{% else %}
|
{% end %}
{% if spider.historical_jobs %}
{{spider.historical_jobs[0].items_count}}
{% end %}
|
{% end %}
{% end %}
{% for spider in project.spiders[1:] %}
{{spider.name}}
|
{% if spider.historical_jobs %}
{{spider.historical_jobs[0].start_time}}
{% end %}
|
{% if spider.historical_jobs %}
{% if spider.historical_jobs[0].status == 2 %}
SUCCESS |
{% else %}
FAIL |
{% end %}
{% else %}
|
{% end %}
{% if spider.historical_jobs %}
{{spider.historical_jobs[0].items_count}}
{% end %}
|
{% end %}
{% end %}