{% load i18n %}
{% with table.rows.page.0.data.get_absolute_url as has_url %}
{# Don't show header for ajax requests having page number bigger than 1 #}
{% if not request.is_ajax or table.page.number == 1 %}
{% for column in table.columns %}
{% endif %}
{# If rows are paginated, print them out from table.rows.page #}
{% if table.rows.page %}
{% for row in table.rows.page %}
{{ column }}
{% endfor %}
{# Only show quickLook column if object has get_absolute_url attribute #}
{% if has_url %}
{% endif %}