diff -r c61d96e72e6f -r d0b7dac5325c thirdparty/google_appengine/google/appengine/ext/admin/templates/tasks.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thirdparty/google_appengine/google/appengine/ext/admin/templates/tasks.html Fri Jun 19 16:13:32 2009 +0200 @@ -0,0 +1,103 @@ +{% extends "base.html" %} + +{% block title %} +{{ application_name }} Development Console - Tasks Viewer{% endblock %} + +{% block head %} + + + +{% endblock %} + +{% block breadcrumbs %} + Tasks Viewer +{% endblock %} + +{% block body %} +

Tasks for Queue: {{ queue_name|escape }}

+ +{% if tasks %} +

+ Tasks will not run automatically. Push the 'Run' button to execute each task. +

+ + + + + + + + + + + + + + {% for task in tasks %} + + + + + + + + + {% endfor %} + + + + +
Task NameETA (UTC)MethodURL
+ {{ task.name|escape }} + + {{ task.eta|escape }} ({{ task.eta_delta|escape }}) + + {{ task.method|escape }} + + {{ task.url|escape }} + +
+ + {% for header in task.headers.items %} + + {% endfor %} + +
+
+
+ + + + +
+
+ {% include "pager.html" %} +
+ +{% else %} + This queue doesn't contain any tasks. +{% endif %} + + +{% endblock %} +