{% include "partial/head.html" %} {% include "partial/header.html" %}

General Information

Description and general information about the schedule

Source

{{ schedule.source }}

Task name

{{ schedule.task_name }}

Cron

{{ schedule.cron }}

Schedule ID

{{ schedule.schedule_id }}

Time

{{ schedule.time.strftime('%Y-%m-%d %H:%M:%S') if schedule.time else '-' }}

Cron offset

{{ schedule.cron_offset }}

Scheduled task arguments

Information about positional and keyword arguments of scheduled task

Positional arguments

{% if schedule.args %}
{{ schedule.args | tojson(indent=2) }}
{% else %}

No arguments provided

{% endif %}

Keyword arguments

{% if schedule.kwargs %}
{{ schedule.kwargs | tojson(indent=2) }}
{% else %}

No keyword arguments provided

{% endif %}

Labels

{% if schedule.labels %}
{{ schedule.labels | tojson(indent=2) }}
{% else %}

No labels provided

{% endif %}