{% extends "admin/layout.html" %} {% block content %}

Scheduled Tasks

Tasks registered in app/console/schedule.py.

{% if missing_schedule_file %}

No schedule file found at app/console/schedule.py.

{% elif not tasks %}

No tasks are scheduled yet.

{% else %}
{% for task in tasks %} {% endfor %}
Expression Description Next Run Flags
{{ task.expression }} {% if task.due_now %} due {% endif %} {{ task.description }} {% if task.name %}({{ task.name }}){% endif %} {% if task.environments %}
env: {{ task.environments | join(', ') }}
{% endif %}
{{ task.next_run }}
{% if task.without_overlapping %} no-overlap {% endif %} {% if task.background %} background {% endif %}
{% endif %} {% endblock %}