django-nested-inline icon indicating copy to clipboard operation
django-nested-inline copied to clipboard

fixing no-name error with a save_as option

Open KanHatakeyama opened this issue 3 years ago • 0 comments
trafficstars

Options.module_name has been deprecated in favor of model_name. https://github.com/django-ordered-model/django-ordered-model/issues/30

Therefore, in admin.py (django-nested-inline==0.4.4), the following fix should be needed to avoid a no-name error during the admin option of "save_as".

line 290 [OLD] opts.module_name

[FIXED] opts.model_name

KanHatakeyama avatar Feb 03 '22 04:02 KanHatakeyama