{% extends "admin/base_site.html" %} {% load i18n staticfiles %} {% block bodyclass %}change-form{% endblock %} {% block extrastyle %} {{block.super}} {% endblock %} {% block content %}

{{cache_backend}}

{% if cache_hosts %} {% for hostname, stats in cache_hosts %}

{{hostname}}

{{stats.bytes|filesizeformat}}

{{stats.curr_items}} of {{stats.total_items}}

{{stats.get_hits}} of {{stats.cmd_get}}: {{stats.hit_rate}}%

{{stats.get_misses}} of {{stats.cmd_get}}: {{stats.miss_rate}}%

{{stats.evictions}}

{{stats.bytes_read|filesizeformat}} in, {{stats.bytes_written|filesizeformat}} out

{{stats.uptime}} seconds

{% endfor %} {% else %}

{% trans "Statistics are not available for this backend." %}

{% endif %}
{% endblock %}