{% extends "admin/index.html" %} {% load memcache_status_tags %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %} {% get_cache_stats %} {% if cache_stats and user.is_superuser %}
{% for server in cache_stats %}
{# ----- Detailed Statistics ----- #} {% for k,v in server.1.items %} {% endfor %}
memcached: {{ server.0 }} - {% widthratio server.1.bytes server.1.limit_maxbytes 100 %}% load
{% endfor %}
{% endif %} {{ block.super }} {% endblock %}