{% extends "base.html" %} {% block title %} {{ application_name }} Development Console - Cron Viewer{% endblock %} {% block head %} {% endblock %} {% block breadcrumbs %} Cron Viewer {% endblock %} {% block body %}

Cron Jobs

{% if message %}
{{ message|escape }}
{% endif %} {% if cronjobs %} {% for job in cronjobs %} {% endfor %}
Cron Job Schedule

{{ job.url|escape }}

{{ job.description|escape }}

{{ job.schedule|escape }} Test this job
{% if job.timezone %} Timezone: {{ job.timezone }}
Schedules with timezones won't be calculated correctly here. Use the appcfg.py cron_info command to view the next run times for this schedule, after installing the pytz package.
{% endif %}
In production, this would run at these times:
    {% for run in job.times %}
  1. {{ run.runtime }} {{ run.difference }} from now
  2. {% endfor %}
{% else %} This application doesn't define any cron jobs. See the documentation for more. {% endif %} {% endblock %}