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