{% load i18n %} {# Sorted Set value display template #}

{% trans 'Sorted Set Members' %} ({{ key_data.size }} {% trans 'items' %})

{% if is_paginated %} {% include "admin/dj_redis_panel/key_detail_pagination_info.html" with collection_type="members" %} {% endif %} {% if key_data.value %} {% for member, score in key_data.value %} {% endfor %}
{% trans 'Member' %} {% trans 'Score' %}
{{ member }} {{ score }}
{% if is_paginated %}{% if has_more or total_pages > 1 %} {% include "admin/dj_redis_panel/key_detail_pagination.html" with collection_type="zset" position="controls" %} {% endif %}{% endif %} {% else %}

{% trans 'Sorted set is empty' %}

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