{% extends 'horizon/common/_data_table.html' %} {% load i18n %} {% block table_caption %}

{{ table }}

{{ table.render_table_actions }} {% if table.pagination and table.position == "both" or table.position == "top" %}
{% include "horizon_contrib/tables/pagination.html" %}
{% endif %} {% endblock table_caption %} {% block table_footer %} {% if table.footer %} {% if table.pagination and table.position == "both" or table.position == "bottom" %} {% blocktrans count counter=rows|length %}Displaying {{ counter }} item{% plural %}Displaying {{ counter }} items{% endblocktrans %} {% include "horizon_contrib/tables/pagination.html" %} {% if table.needs_summary_row %} {% for column in columns %} {% if forloop.first %} {% trans "Summary" %} {% else %} {{ column.get_summation|default_if_none:"–"}} {% endif %} {% endfor %} {% endif %} {% else %} {% if table.needs_summary_row %} {% for column in columns %} {% if forloop.first %} {% trans "Summary" %} {% else %} {{ column.get_summation|default_if_none:"–"}} {% endif %} {% endfor %} {% endif %} {% blocktrans count counter=rows|length %}Displaying {{ counter }} item{% plural %}Displaying {{ counter }} items{% endblocktrans %} {% if table.has_more_data %} | More » {% endif %} {% endif %} {% endif %} {% endblock table_footer %}