{% if component.mobile %} {% else %} {% with queryset=component.get_queryset() %}
{{ paginator_checkboxes(component, None, True) }} {% if component.can_show_actions and not component.request.GET.popup %} {% endif %} {% for column_name, lookup, sortable, to in component.column_names %} {% endfor %} {% if component.drop_down.has_inline_action and not component.readonly and not component.request.GET.popup %} {% endif %} {% for obj in queryset %} {{ set_request(obj, component.request) }} {{ paginator_checkboxes(component, obj, True) }} {% if component.can_show_actions and not component.request.GET.popup %} {% endif %} {% for column_name, lookup, sortable, to in component.column_names %} {% with value=obj|getattr(lookup) %} {% endwith %} {% endfor %} {% if component.drop_down.has_inline_action and not component.readonly and not component.request.GET.popup %} {% endif %} {% endfor %}
{{ _("Options") }} {% if sortable %}{% endif %} {{ column_name|normalyze }} {% if sortable %}{% endif %} {% if component.order_by == lookup and sortable %} {% endif %} {{ _("Actions") }}
{{ value|format|safe }} {{ add_actions(component, obj) }} {{ component.drop_down|safe }}
{% endwith %} {% endif %}