diff --git a/horizon/templates/horizon/common/_data_table.html b/horizon/templates/horizon/common/_data_table.html index a58e88605..d8a26370b 100644 --- a/horizon/templates/horizon/common/_data_table.html +++ b/horizon/templates/horizon/common/_data_table.html @@ -3,14 +3,18 @@
{% 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 %} + {% block table_columns %} {% if not table.is_browser_table %} {% for column in columns %} @@ -25,7 +31,9 @@ {% endfor %} {% endif %} + {% endblock table_columns %} + {% block table_body %} {% for row in rows %} {{ row.render }} @@ -35,6 +43,8 @@ {% endfor %} + {% endblock table_body %} + {% block table_footer %} {% if table.footer %} {% if table.needs_summary_row %} @@ -59,7 +69,9 @@ {% endif %} + {% endblock table_footer %}

{{ table }}

{{ table.render_table_actions }}
+{% endblock table %} {% endwith %} {% if needs_form_wrapper %}
{% endif %}