diff -r c61d96e72e6f -r d0b7dac5325c thirdparty/google_appengine/google/appengine/ext/admin/templates/queues.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thirdparty/google_appengine/google/appengine/ext/admin/templates/queues.html Fri Jun 19 16:13:32 2009 +0200 @@ -0,0 +1,75 @@ +{% extends "base.html" %} + +{% block title %} +{{ application_name }} Development Console - Task Queue Viewer{% endblock %} + +{% block head %} + +{% endblock %} + +{% block breadcrumbs %} + Queue Viewer +{% endblock %} + +{% block body %} +
+ Tasks will not run automatically. Select a queue to run tasks manually. +
+ +Queue Name | +Maximum Rate | +Bucket Size | +Oldest Task (UTC) | +Tasks in Queue | ++ |
---|---|---|---|---|---|
+ + {{ queue.name|escape }} + | ++ {{ queue.max_rate|escape }} + | ++ {{ queue.bucket_size|escape }} + | +
+ {% if queue.oldest_task %}
+ {{ queue.oldest_task|escape }} + ({{ queue.eta_delta|escape }}) + {% else %} + None + {% endif %} + |
+ + {{ queue.tasks_in_queue|escape }} + | ++ + | +