Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django import-export: only export

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?

like image 412
loar Avatar asked Mar 25 '15 09:03

loar


2 Answers

from import_export.admin import ExportMixin

class BookAdmin(ExportMixin, admin.ModelAdmin):
like image 95
user2947136 Avatar answered Oct 14 '22 11:10

user2947136


As your question is not really described, I can only guess, that you want to remove the "import" button in the Admin view?

As described here you have to set the ExportMixin on your ModelAdmin. So it looks something like this

class BookAdmin(ExportMixin, ModelAdmin):
like image 44
viirus Avatar answered Oct 14 '22 12:10

viirus