{% extends 'admin/base_site.html' %} {% load i18n admin_urls admin_static %} {% 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 %}