{% extends "kadmin/base.html" %} {% block content %} {% for name, redis in redis_info.items %}

Redis Instance: {{ name }}

{% if redis.down %}

Connection Error!

There was an error connecting to Redis with:
{{ redis.connection }}

{% else %}

Config:

{% for item in redis.config %} {% endfor %}
{{ item.key }} {{ item.value|pprint }}

Info:

{% for item in redis.info %} {% endfor %}
{{ item.key }} {{ item.value|pprint }}
{% endif %} {% endfor %} {% endblock %}