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

{% trans 'Hash Fields' %} ({{ key_data.size }} {% trans 'fields' %})

{% if is_paginated %} {% include "admin/dj_redis_panel/key_detail_pagination_info.html" with collection_type="fields" %} {% endif %} {% if key_data.value %} {% if allow_key_edit %} {% endif %} {% for field, value in key_data.value.items %} {% if allow_key_edit %} {% endif %} {% endfor %}
{% trans 'Field' %} {% trans 'Value' %}{% trans 'Actions' %}
{{ field }} {% if allow_key_edit %}
{% csrf_token %}
{% else %} {{ value }} {% 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="hash" position="controls" %} {% endif %}{% endif %} {% else %}

{% trans 'Hash is empty' %}

{% endif %}