Reputation: 1745
I'm using the third party library Django-import-export for importing/exporting data.
It's working properly but I only want the export functionality (not import one).
How could I use only export without import?
Upvotes: 12
Views: 6177
Reputation: 751
from import_export.admin import ExportMixin
class BookAdmin(ExportMixin, admin.ModelAdmin):
Upvotes: 34
Reputation: 581
If you want the action of Export Selected Books
, you can use
class BookAdmin(ExportActionModelAdmin,admin.ModelAdmin):
Upvotes: 5