Django-import-export Can Not Get It Working
Can not get this to do anything, installed, added to apps, followed the docs. nothing. here's my admin.py: from import_export import resources from import_export.admin import Impo
Solution 1:
If you are already inherit from admin.ModelAdmin
, than using mixin would make more sense import_export.admin.ImportExportMixin
(see: https://django-import-export.readthedocs.org/en/latest/getting_started.html#admin-integration)
If buttons do not appear, it is possible that DjangoObjectActions
overrides admin template.
Post a Comment for "Django-import-export Can Not Get It Working"