{% extends "base.html" %} {% block title %}Tasks{% endblock %} {% block js %} {% endblock %} {% block body %}

Run or schedule action

{% for a in actions %} {{a}}
{% endfor %}

Running

{% for host,tasks in inspect_active.items() %} {% for task in tasks %} {% endfor %} {% endfor %}
IDTaskArguments
{{task["id"]}} {{task["name"]}} {{task["args"]}}

Queued

{% for host,tasks in inspect_scheduled.items() %} {% for task in tasks %} {% endfor %} {% endfor %}
IDTaskArguments
{{task["id"]}} {{task["name"]}} {{task["args"]}}

Schedule

{% for pt in periodic_tasks %} {% endfor %}
IDNameTaskMHDoWDoMMoY
{{pt.id}} {% if pt.enabled %}{% else %}{% endif %} {{pt.nice_name}} {{pt.nice_task}} {{pt.crontab_minute}} {{pt.crontab_hour}} {{pt.crontab_day_of_week}} {{pt.crontab_day_of_month}} {{pt.crontab_month_of_year}}

Results

All results {% for r in task_results %} {% endfor %}
IDTaskTimeState
{{r.id}} {{r.nice_task}} {{r.finished_time.strftime("%Y-%m-%d %H:%M:%S")}} {{r.state}}
{% endblock %}