{% extends 'admin/base_site.html' %} {% load i18n admin_urls static %} {% block title %}{% trans "Export" %} {{ opts.verbose_name_plural }} {{ block.super }}{% endblock title %} {% block bodyclass %}{{ block.super }} change-list{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Export" %} {{ opts.verbose_name_plural }} ({{ queryset.count }})

{% for object in queryset|slice:":10" %} {{ object }} {% if not forloop.last %},{% endif %} {% endfor %} {% if queryset.count > 10 %}...{% endif %}
{% csrf_token %} {% include "export_action/fields.html" %}
{% endblock %}