{% load url from future %} {% load i18n l10n %} {% if table.page.object_list or table.rows %} {% csrf_token %} {% for column in table.columns %} {% endfor %} {% if not hide_quick_look %} {% endif %} {% block table_content %} {% for row in table.page.object_list|default:table.rows %} {% for value in row %} {% endfor %} {% if not hide_quick_look %} {% endif %} {% endfor %} {% endblock %}
  {% if column.sortable %} {% if column.order_by %} {{ column }} {% if column.order_by.is_ascending %}
{% else %}
{% endif %}
{% else %} {{ column }} {% endif %} {% else %} {{ column }} {% endif %}
{% if forloop.first %} {{ value }} {% else %} {% if value %} {{ value }} {% else %} – {% endif %} {% endif %} {% trans "Quick Look" %}
{% if table.paginator.num_pages > 1 %} {% endif %} {% endif %}