{% extends "admin/dj_cache_panel/base.html" %} {% load i18n %} {% block panel_breadcrumbs %} {{ block.super }} › {{ cache_name }} › {% trans "Add Key" %} {% endblock %} {% block panel_content %} {% blocktrans %}Back to {{ cache_name }}{% endblocktrans %}

{% trans "Add New Key" %}

{{ cache_name }} · {{ cache_config.BACKEND }}

{% csrf_token %}

{% if not edit_supported %} {% trans "Adding keys is not supported for this cache backend." %} {% else %} {% trans "Enter the name for the new cache key." %} {% endif %}

{% if not edit_supported %} {% trans "Adding keys is not supported for this cache backend." %} {% else %} {% trans "Enter the value for the new key. You can use JSON format for complex values (dicts, lists, etc.)." %} {% endif %}

{% trans "Optional: Set expiration time in seconds. Leave empty to use cache default." %}

{% trans "Cancel" %}
{% endblock %}