{% load django_tables2 django_tableaux %} {% load i18n %} {% for row in table.paginated_rows %} {% if table.mobile %} {% include templates.tableaux_row_mobile %} {% else %} {% include templates.tableaux_row %} {% endif %} {% if forloop.last and view.pagination == Pagination.LOAD and table.page.number >= table.page.paginator.num_pages %} {% trans "-- End of data --" %} {% endif %} {% if forloop.last and view.pagination == Pagination.LOAD %} {% if table.page.number < table.page.paginator.num_pages %} {% include templates.load_more %} {% else %} {% trans "-- End of data --" %} {% endif %} {% endif %} {% empty %} {% if table.empty_text %} {{ table.empty_text }} {% else %} No data to display {% endif %} {% endfor %}