here is my code for admin.py with a model named BASE2
class Base2Admin(ExportMixin, admin.ModelAdmin):
resource_class = Base2Resource
filter_horizontal = ('images',)
list_display = ('id', 'name','description','promoted', 'slug')
search_fields=['name','description', 'slug']
list_editable = ('name', 'description','promoted', 'slug')
so now i get list display of all my data but what i want is that in admin in list mode the data should get saved on every keystroke. basically i do not want to click on the save button below