Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ And add ``wagtail_exportcsv`` to ``INSTALLED_APPS``
Quick start
-----------

First, create a resource class to define a CSV export. Then add
``ExportModelAdminMixin`` to your Wagtail ``ModelAdmin`` class. Example:
First, create a resource class to define a CSV export (details for ModelResources
can be found at https://django-import-export.readthedocs.io/en/latest/getting_started.html#creating-import-export-resource. Then add ``ExportModelAdminMixin`` to your Wagtail ``ModelAdmin`` class. Example:

.. code-block:: python

from import_export import resources
from wagtail.contrib.modeladmin.options import ModelAdmin
from wagtail_exportcsv.admin import ExportModelAdminMixin

class ExampleResource(resources.ModelResource):

Expand Down