{% extends 'django_tables2/table.html' %} {% load template_helpers %} {% block table.tbody.row %} {{ block.super }} {% if row.table.new_row_columns %} {% for new_row in row.new_rows %} {% for column, cell in new_row %} {{ cell }} {% endfor %} {% endfor %} {% endif %} {% endblock table.tbody.row %} {% block table.tfoot %} {{ block.super }} {% for footer_row in table.extra_footers %} {% for column in table.columns %} {{ footer_row|get_item:column.name|default_if_none:"" }} {% endfor %} {% endfor %} {% endblock %}