{% extends "base.html" %} {% block content_header %}

Periodic jobs

{% endblock %} {% block content_body %}

Periodic jobs (Spiders)

{% for job_instance in job_instance_list %} {% if job_instance.priority == -1 %} {% elif job_instance.priority == 0 %} {% elif job_instance.priority == 1 %} {% elif job_instance.priority == 2 %} {% endif %} {% if job_instance.enabled %} {% else %} {% endif %} {% endfor %}
# Month Day of Month Day of Week Hour Spider Priority Args Tags Enabled Action
{{ job_instance.job_instance_id }} {{ job_instance.cron_day_of_month }} {{ job_instance.cron_day_of_month }} {{ job_instance.cron_day_of_week }} {{ job_instance.cron_hour }} {{ job_instance.spider_name }} LOW NORMAL HIGH HIGHEST {{ job_instance.spider_arguments }} {{ job_instance.tags }} Enabled Disabled Run Remove
{% endblock %}