summaryrefslogtreecommitdiffstats
path: root/keyedcache/templates
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-07 21:19:50 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-07 21:19:50 -0400
commite215c1d15b049b04f7a2497c07d3c9a3f380638d (patch)
tree65257c6d9b55810f39a641edc1bb6dec2d474393 /keyedcache/templates
parent57033196f904477631c397fab50681f0d1aa7834 (diff)
downloadaskbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.tar.gz
askbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.tar.bz2
askbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.zip
envelope turns on correctly for responses, but not for mentions yet, added urls for cache monitoring
Diffstat (limited to 'keyedcache/templates')
-rw-r--r--keyedcache/templates/keyedcache/delete.html3
-rw-r--r--keyedcache/templates/keyedcache/stats.html3
-rw-r--r--keyedcache/templates/keyedcache/view.html3
3 files changed, 3 insertions, 6 deletions
diff --git a/keyedcache/templates/keyedcache/delete.html b/keyedcache/templates/keyedcache/delete.html
index 9449a6d3..a6e00707 100644
--- a/keyedcache/templates/keyedcache/delete.html
+++ b/keyedcache/templates/keyedcache/delete.html
@@ -1,5 +1,5 @@
{% extends "admin/base_site.html" %}
-{% load messaging_tags i18n %}
+{% load i18n %}
{% block breadcrumbs %}{% if not is_popup %}
<div class="breadcrumbs">
@@ -10,7 +10,6 @@
{% endif %}{% endblock %}
{% block content %}
-{% show_messages %}
<p>[<a href="{% url keyedcache_stats %}">Cache Stats</a>] [<a href="{% url keyedcache_view %}">View Cache</a>]</p>
<h1>Delete From Cache</h1>
<form method="POST" action="{% url keyedcache_delete %}">
diff --git a/keyedcache/templates/keyedcache/stats.html b/keyedcache/templates/keyedcache/stats.html
index 0a3f17d6..2ea3d12f 100644
--- a/keyedcache/templates/keyedcache/stats.html
+++ b/keyedcache/templates/keyedcache/stats.html
@@ -1,5 +1,5 @@
{% extends "admin/base_site.html" %}
-{% load messaging_tags i18n %}
+{% load i18n %}
{% block breadcrumbs %}{% if not is_popup %}
<div class="breadcrumbs">
@@ -9,7 +9,6 @@
{% endif %}{% endblock %}
{% block content %}
-{% show_messages %}
<p>[<a href="{% url keyedcache_view %}">View Cache</a>] [<a href="{% url keyedcache_delete %}">Delete from Cache</a>]
<h1>Cache Stats</h1>
<p>Backend: {{ cache_backend }} ({% if cache_running %}running{% else %}down{% endif %})</p>
diff --git a/keyedcache/templates/keyedcache/view.html b/keyedcache/templates/keyedcache/view.html
index e28c5a0e..3034a98f 100644
--- a/keyedcache/templates/keyedcache/view.html
+++ b/keyedcache/templates/keyedcache/view.html
@@ -1,5 +1,5 @@
{% extends "admin/base_site.html" %}
-{% load messaging_tags i18n %}
+{% load i18n %}
{% block breadcrumbs %}{% if not is_popup %}
<div class="breadcrumbs">
@@ -10,7 +10,6 @@
{% endif %}{% endblock %}
{% block content %}
-{% show_messages %}
<p>[<a href="{% url keyedcache_stats %}">Cache Stats</a>] [<a href="{% url keyedcache_delete %}">Delete from Cache</a>]
<h1>Cache Keys</h1>
<p style="font-size:82%;">{% for key in cached_keys %}{{ key }}, {% endfor %}