{% extends "admin/dj_cache_panel/base.html" %} {% load i18n dcr_icons %} {% block panel_breadcrumbs %} {{ block.super }} › {{ cache_name }} {% endblock %} {% block panel_content %} {% if error %}
{% trans "Error" %}
{{ error }}
{{ error_message }}
{% trans "Key Operations Not Available" %}
{% trans "This cache backend does not support listing keys or performing exact key lookups. No search functionality is available for this cache backend." %}
{% elif not query_supported %}{% trans "Key Listing Not Available" %}
{% trans "This cache backend does not support listing all keys. You can still perform exact key lookups using the search box below." %}
{% elif not get_key_supported %}{% trans "Key Lookup Not Available" %}
{% trans "This cache backend does not support getting key values. You can still list keys using wildcard patterns." %}
{% endif %}
{% trans "Key Search" %} · {{ cache_config.BACKEND }}
{% trans "Exact key match found." %}
{% elif total_keys %}{% blocktrans with total=total_keys start=start_index end=end_index %}Found {{ total }} keys, showing {{ start }} to {{ end }}{% endblocktrans %}
{% endif %}| {% trans "Key" %} | {% if keys_data.0.redis_key %}{% trans "Redis Key" %} | {% endif %}
|---|---|
| {{ key_info.key }} | {% if key_info.redis_key %}{{ key_info.redis_key }} |
{% endif %}
|
{% if search_query %} {% trans "No keys found" %} {% elif not query_supported and not get_key_supported %} {% trans "No key operations available" %} {% else %} {% trans "No keys yet" %} {% endif %} {% if search_query and not error_message %} {% trans "No keys found matching your search." %} {% elif query_supported and not search_query %} {% trans "Enter a search pattern or click Search to list all keys." %} {% elif not query_supported and not get_key_supported %} {% trans "This cache backend does not support any key search or lookup operations." %} {% endif %} |
|