anjanesh Although django-import-export is tied into the Django admin interface, under the hood, it's just using its Resource
class to handle the import and export logic. This means you should be able to use it with your custom Django views and integrate it into your templates/UI, but you'll need to wire up the file upload and data processing flow yourself instead of relying on the admin's built-in UI. Once you've done that, you can have the same import/export benefits in your custom UI as you would in the Django admin.