summaryrefslogtreecommitdiffstats
path: root/keyedcache/templates
diff options
context:
space:
mode:
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 %}