{% load get %} {% load urlbuilder %} {% load call %} {% if table.page_obj.object_list %} {% block table_head %}{% endblock %} {% spaceless %} {% endspaceless %} {% for column in table.table.columns %} {% endfor %} {% block table_body %} {% for obj in table.page_obj.object_list %} {% include "tables/table_row.html" %} {% endfor %} {% endblock %}
{{ column.header }} {% if column.sortable %}
{% if not table.applied_sort == column.render_sort_asc %} {% endif %} {% if not table.applied_sort == column.render_sort_desc %} {% endif %}
{% endif %}
{% block table_footer %}{% endblock %} {% if table.page_obj and table.page_obj.has_other_pages %} {% with table.page_obj as page_obj %} {% include "tables/pagination_controls.html" %} {% endwith %} {% endif %} {% else %}
{{ table.table.table_empty }}
{% endif %}