{% extends 'horizon/common/_data_table.html' %} {% load i18n %} {% block table %} {% with sort_dir=table.get_sort_dir sort_key=table.get_sort_key %} {% endwith %} {% block table_caption %} {% endblock table_caption %} {% block table_breadcrumb %} {% if table.breadcrumb %} {% endif %} {% endblock table_breadcrumb %} {% 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 %} {% 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 %} {% endif %} {% endblock table_footer %}
{% if not hidden_title %} {{ table }} {% endif %} {{ table.render_table_actions }}
{{ column }} {% if column.help_text %} {% endif %}
{{ table.get_empty_message }}
{% trans "Summary" %}{{ column.get_summation|default_if_none:"–"}}
{% endblock table %}