{% csrf_token %}

{{ table }}

{{ table.render_table_actions }}
{% with columns=table.get_columns rows=table.get_rows %} {% for column in columns %} {% endfor %} {% for row in rows %} {% for cell in row %} {% endfor %} {% empty %} {% endfor %}
{{ column }}
{{ cell.value }}
{{ table.get_empty_message }}
Displaying {{ rows|length }} item{{ rows|pluralize }} {% if table.has_more_data %} | More » {% endif %}
{% endwith %}