{% load i18n %} {% with table.needs_form_wrapper as needs_form_wrapper %}
{% if needs_form_wrapper %}
{% csrf_token %}{% endif %} {% with columns=table.get_columns rows=table.get_rows %} {% if table.breadcrumb %} {% endif %} {% if not table.is_browser_table %} {% for column in columns %} {% endfor %} {% endif %} {% for row in rows %} {{ row.render }} {% empty %} {% endfor %} {% if table.footer %} {% if table.needs_summary_row %} {% for column in columns %} {% if forloop.first %} {% else %} {% endif %} {% endfor %} {% endif %} {% endif %}

{{ table }}

{{ table.render_table_actions }}
{{ column }}
{{ table.get_empty_message }}
{% trans "Summary" %}{{ column.get_summation|default:"–"}}
{% blocktrans count counter=rows|length %}Displaying {{ counter }} item{% plural %}Displaying {{ counter }} items{% endblocktrans %} {% if table.has_more_data %} | More » {% endif %}
{% endwith %} {% if needs_form_wrapper %}
{% endif %}
{% endwith %}