Re: [mezzanine-users] Add import/export button in admin panel by using product_db code with django-import-export package.

2016-05-04 Thread Eduardo Rivas
Glad to see you figured it out. The only suggestion I have is that you should avoid editing Cartridge source code, and instead register your own customized admin class in your project. That way future Cartridge updates won't break your code (as easily) and you know all your customizations live

[mezzanine-users] Add import/export button in admin panel by using product_db code with django-import-export package.

2016-05-03 Thread Sathish Anton
Hi, Here is a method to override django-import-export functions with product_db import export function. 1. pip install django-import-export 2. Add to# settings.py INSTALLED_APPS = ( ... 'import_export',) 3. Add image files to /tmp/orig/product 4. Make changes to the /home/sathish/impex