{% load i18n %} {# List value display template #}
| {% trans 'Index' %} | {% trans 'Value' %} | {% if allow_key_edit %}{% trans 'Actions' %} | {% endif %}
|---|---|---|
{% if is_paginated %}{{ start_index|add:forloop.counter0 }}{% else %}{{ forloop.counter0 }}{% endif %} |
{% if allow_key_edit %}
{% else %}
{{ item }}
{% endif %}
|
{% if allow_key_edit %}
{% endif %} |
{% trans 'List is empty' %}
{% endif %}