{% load i18n %} {# List value display template #}

{% trans 'List Elements' %} ({{ key_data.size }} {% trans 'items' %})

{% if is_paginated %} {% include "admin/dj_redis_panel/key_detail_pagination_info.html" with collection_type="items" %} {% endif %} {% if key_data.value %} {% for item in key_data.value %} {% endfor %}
{% trans 'Index' %} {% trans 'Value' %}
{% if is_paginated %}{{ start_index|add:forloop.counter0 }}{% else %}{{ forloop.counter0 }}{% endif %} {{ item }}
{% if is_paginated %}{% if has_more or total_pages > 1 %} {% include "admin/dj_redis_panel/key_detail_pagination.html" with collection_type="list" position="controls" %} {% endif %}{% endif %} {% else %}

{% trans 'List is empty' %}

{% endif %}
{% trans 'List editing is not supported in this interface. Use Redis CLI or other tools for complex list operations.' %}