{% extends "admin/dj_cache_panel/base.html" %} {% load i18n admin_urls static admin_list %} {% block content %}
{% if caches %}

{% trans 'Cache Instances' %}


{% for cache_name, cache_config in caches.items %} {% endfor %}
Cache Name Backend
{{ cache_name }} {{ cache_config.BACKEND }}
{% else %}

{% trans 'Cache Configuration Required' %}

{% trans 'To use the Cache panel, you must configure cache instances in your Django settings.' %}

{% trans 'Please add a configuration dictionary to your settings.py like the example below:' %}

{% trans 'After adding the configuration, restart your Django server to see your Cache instances.' %}

{% endif %}
{% endblock %}