{% extends 'django_tables2/table.html' %} {% load django_tables2 %} {% load i18n %} {% block table.thead %} {% block table.caption %}

{% if table.icon %} {% endif %} {{ table.get_caption_display }}

{% endblock %} {% for column in table.columns %} {% if column.orderable %} {{ column.header }} {% else %} {{ column.header }} {% endif %} {% endfor %} {% endblock table.thead %} {% block pagination %} {% with page_obj=table.page paginator=table.paginator %} {% include "oscar/dashboard/partials/pagination.html" %} {% endwith %} {% endblock pagination %}