{% extends "skeleton.html" %} {% block page_title %}Cron Jobs{% endblock %} {% block page_head %} {% endblock %} {% block body %}

Cron Jobs

{% if cron_error %} Error loading cron.yaml:
{{ cron_error }}
{% endif %}
{% if cronjobs %} {% for job in cronjobs %} {% endfor %}
Cron Job Schedule

{{ job.url }}

{{ job.description }}

{{ job.schedule }} {% if job.timezone %}
Timezone: {{ job.timezone }}
{% endif %} {% if job.timezone and not has_pytz %}
pytz is required to calculate future run times for cron jobs with timezones.
{% else %}
In production, this would run at these times:
    {% for run in job.times %}
  1. {{ run.runtime }} {{ run.difference }} from now
  2. {% endfor %}
{% endif %}
{% elif not cron_error %}

This application doesn't define any cron jobs. See the documentation to learn how to configure cron jobs.

{% endif %}
{% endblock %}