{% 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 %} {% if allow_key_edit %} {% endif %} {% for item in key_data.value %} {% if allow_key_edit %} {% endif %} {% endfor %}
{% trans 'Index' %} {% trans 'Value' %}{% trans 'Actions' %}
{% if is_paginated %}{{ start_index|add:forloop.counter0 }}{% else %}{{ forloop.counter0 }}{% endif %} {% if allow_key_edit %}
{% csrf_token %}
{% else %} {{ item }} {% endif %}
{% csrf_token %}
{% 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 %}