I'm trying to update from 2.2.10 to the current version, but my projects uses autocomplete_light.modelform_factory()
several times to generate forms for creating new models on the admin side.
Like this in admin.py:
class MyModelAdmin(admin.ModelAdmin):
form = autocomplete_light.modelform_factory(MyModel, fields='__all__')
list_display = ('first_name', 'last_name')
What's the new way to generate model forms in django-autocomplete-light==3.1.6