{% extends "admin/dj_cache_panel/base.html" %} {% load i18n admin_urls static %} {% block breadcrumbs %}
{% endblock %} {% block content %}{{ cache_name }}
{{ 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 has_previous %} {% trans 'previous' %} {% endif %} {% for num in page_range %} {% if num == "..." %} … {% elif num == current_page %} {{ num }} {% else %} {{ num }} {% endif %} {% endfor %} {% if has_next %} {% trans 'next' %} {% endif %} {{ total_keys }} {% blocktrans count counter=total_keys %}key{% plural %}keys{% endblocktrans %}
{% endif %}{% trans 'No keys found matching your search.' %}
{% trans 'Enter a search pattern or click Search to list all keys.' %}
{% trans 'This cache backend does not support any key search or lookup operations.' %}