diff -r 37505d64e57b -r f2e327a7c5de thirdparty/google_appengine/google/appengine/ext/admin/templates/memcache.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/thirdparty/google_appengine/google/appengine/ext/admin/templates/memcache.html Tue Sep 16 02:28:33 2008 +0000
@@ -0,0 +1,119 @@
+{% extends "base.html" %}
+
+{% block title %}{{ application_name }} Development Console - Memcache Viewer{% endblock %}
+
+{% block head %}
+
+{% endblock %}
+
+{% block breadcrumbs %}
+ Memcache Viewer
+{% endblock %}
+
+{% block body %}
+
Memcache Viewer
+
+{% if message %}
+
+{{ message|escape }}
+
+{% endif %}
+
+{% if show_stats %}
+
+
+ - Hit ratio: {{ hitratio }}% ({{ stats.hits }} hit{{ stats.hits|pluralize }} and {{ stats.misses }} miss{{ stats.misses|pluralize:"es" }})
+ - Size of cache: {{ stats.items }} item{{ stats.items|pluralize }}, {{ stats.bytes|filesizeformat }}
+
+
+ - Cache contains items up to {{ oldest_item_age|timesince }} old.
+
+
+
+
+
+
+{% endif %}
+
+{% if show_value %}
+{% if key_exists %}
+{% ifequal type "error" %}
+Error fetching {{ key|escape }}: {{ value|escape }}
+{% else %}
+
+
"{{ key|escape }}" is a {{ type|escape }}:
+
{{ value|escape }}
+
+{% endifequal %}
+{% else %}
+No such key: {{ key|escape }}
+{% endif %}
+{% endif %}
+
+{% if show_valueform %}
+
+{% endif %}
+
+{% endblock %}
+
+{% block final %}
+
+{% endblock %}