{% extends "admin/index.html" %} {% load redis_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 stat in server.detailed_stats %} {% endfor %}
{{ server.name}} - {{ server.url }} - {% widthratio server.used_memory server.max_memory 100 %}% full
{% trans "Miss Ratio" %} {% widthratio server.keyspace_misses server.key_operations 100 %}%
{% trans "Detailed Statistics:" %}
{{ stat.0 }}{{ stat.1 }}
{% endfor %}
{% endif %} {{ block.super }} {% endblock %}