{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block bodyclass %}{{ block.super }} app-django_cachex model-cache change-list{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% block object-tools %} {% endblock %}
{% if key_types %}

{% trans 'Filter' %}

{% trans 'By Type' %}
{% endif %}
{% if error %}

Error: {{ error }}

{% endif %} {% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %} {% if keys_data %}
0 of {{ keys_data|length }} selected
{% endif %} {% if keys_data %}
{% if show_type %} {% endif %} {% if show_ttl %} {% endif %} {% if show_size %} {% endif %} {% for key_info in keys_data %} {% if show_type %} {% endif %} {% if show_ttl %} {% endif %} {% if show_size %} {% endif %} {% endfor %}
{% trans 'Key' %}
{% trans 'Type' %}
{% trans 'TTL' %}
{% trans 'Size' %}
{{ key_info.key }} {% if key_info.type %} {{ key_info.type }} {% else %} - {% endif %} {% if key_info.ttl_expires_at %} {{ key_info.ttl_expires_at|timeuntil }} {% else %} - {% endif %} {% if key_info.size is not None %} {{ key_info.size }} {% else %} - {% endif %}
{% else %}

{% trans 'No keys found.' %}

{% endif %}
{% endblock %}