{% extends "base/base.html" %} {% from "base/ui/job.html" import job_panel with context %} {% block content %}

Schedule Details

Scheduled
Key {{ schedule.unique_key }}
Schedule {{ schedule.cron }}
Next Run {{ schedule.next_run|relative_time }}
Last Enqueued {{ schedule.last_run|relative_time }}

Job

The following job will be queued whenever the schedule is reached.

{{ job_panel(schedule.job) }}
{% endblock %}