{% 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 %} {% block table %} {% block table_caption %} {% endblock table_caption %} {% block table_breadcrumb %} {% if table.breadcrumb %} {% endif %} {% endblock table_breadcrumb %} {% if table.footer and rows %} {% if table.number_of_pages is None %} {% include "horizon/common/_data_table_pagination.html" %} {% else %} {% include "horizon/common/_data_table_pagination_with_pages.html" %} {% endif %} {% endif %} {% block table_columns %} {% if not table.is_browser_table %} {% for column in columns %} {% endfor %} {% endif %} {% endblock table_columns %} {% block table_body %} {% for row in rows %} {{ row.render }} {% empty %} {% if table.needs_filter_first %} {% else %} {% endif %} {% endfor %} {% endblock table_body %} {% block table_footer %} {% if table.footer and rows %} {% if table.needs_summary_row %} {% for column in columns %} {% if forloop.first %} {% else %} {% endif %} {% endfor %} {% endif %} {% if table.number_of_pages is None %} {% include "horizon/common/_data_table_pagination.html" %} {% else %} {% include "horizon/common/_data_table_pagination_with_pages.html" %} {% endif %} {% endif %} {% endblock table_footer %}
{% if not hidden_title %} {{ table }} {% endif %} {{ table.render_table_actions }}
{{ column }} {% if column.help_text %} {% endif %}
{{ table.get_filter_first_message }}{{ table.get_empty_message }}
{% trans "Summary" %}{{ column.get_summation|default_if_none:"–"}}
{% endblock table %} {% endwith %} {% if needs_form_wrapper %}
{% endif %}
{% endwith %}