{% extends "base.html" %} {% load i18n %} {% block head_title %} {{ entity_name_plural|capfirst }} {% endblock %} {% block content %}

{{ entity_name_plural|capfirst }} {{ total_count }}

{% for column, column_label in columns %} {% endfor %} {% if row_actions %} {% endif %} {% for row in rows %} {% for value in row.data.values %} {% endfor %} {% if row.actions %} {% endif %} {% endfor %}
{{ column_label }} {% trans "Actions" %}
{{ value }} {% for action in row.actions %} {{ action.label }} {% endfor %}
{% if is_paginated %} {% endif %}
{% endblock %}