Description
Hey there!
Thanks for a great project! 👏
The current description of this repo says:
Run django-import-export processes in celery
So I made some exports with custom forms in django-import-export, expecting to be able to easily turn that into a Celery process, using django-import-export-celery... because of the name and the current description, this looks like an extension / integrated project of django-import-export.
In other words: The general idea that I get is that it should be possible to generate the ExportJob somehow directly through the interface of django-import-export but this isn't very intuitive... I'm not actually sure where I should do that.
The other impression I have is that I should discard the previous export form and Resource.filter_export
method because it's not support by django-import-export-celery - instead, I should implement all filtering in the Django list view and use a ModelAdmin action to generate the ExportJob.