{% load i18n %} {% with input_tpl="admin/django_cachex/key/key_detail_value_input.html#value-input" %}

{% trans 'Operations' %}

{% csrf_token %}
{% include input_tpl with name="field_value" rows=4 field_id="id_xadd_value" placeholder=_("value") editable=True only %}
{% csrf_token %}

{% trans 'Stream Entries' %}{% if type_data.length %} ({{ type_data.length }}){% endif %}

{% if type_data.entries %}
{% for entry_id, fields in type_data.entries %} {% endfor %}
{% trans 'Entry ID' %} {% trans 'Fields' %} {% trans 'Actions' %}
{{ entry_id }} {% for field, value in fields.items %}{{ field }}: {{ value }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% csrf_token %}
{% else %}

{% trans 'Stream is empty.' %}

{% endif %} {% include "admin/django_cachex/key/key_detail_pagination.html" %}
{% endwith %}