diff -r 83d96aadd228 -r ac7bd3b467ff thirdparty/google_appengine/google/appengine/ext/admin/templates/cron.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thirdparty/google_appengine/google/appengine/ext/admin/templates/cron.html Sun Apr 12 13:22:43 2009 +0000 @@ -0,0 +1,85 @@ +{% 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 JobSchedule
+

{{ 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 %} +