{% load i18n %} {% load args %} {% comment %} table - > instanse of BaseTableView, see __iter__ method row -> instanse of BoundRow cell -> instanse of BoundCell {% endcomment %} {% if controller.profile %} {% if not controller.profile.is_default %}

{% trans 'Profile' %}: {{ controller.profile.label }}

{% endif %} {% endif %}
{% if table.search %} {% endif %} {% trans 'Columns' %} | {% trans 'Filter' %} | {% trans 'Remember as default state' %} | {% trans 'Remember state as' %}
{% if controller.paginator %} {% with controller.paginator as paginator %} {% include "paginator.html" %} {% endwith %} {% endif %} {% include "table_head.html" %} {% for row in controller.get_paginated_rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ cell.as_html }}
{% if controller.paginator %} {% with controller.paginator as paginator %} {% include "paginator.html" %} {% endwith %} {% endif %}

{% trans 'Filter form' %}

{{ filter_form }}