{% load i18n %}
{% csrf_token %} {% with columns=table.get_columns rows=table.get_rows %} {% for column in columns %} {% endfor %} {% for row in rows %} {{ row.render }} {% empty %} {% endfor %}

{{ table }}

{{ table.render_table_actions }}
{{ column }}
{{ table.get_empty_message }}
{% blocktrans count counter=rows|length %}Displaying {{ counter }} item{% plural %}Displaying {{ counter }} items{% endblocktrans %} {% if table.has_more_data %} | More » {% endif %}
{% endwith %}