intp1

Results 2 comments of intp1

With django-nested-admin, I managed to fix the field style in unfold way, by adding extension like : ```python from unfold.contrib.inlines.admin import TabularInline as UnfoldTabularInline class ShopSPUAtlasInline(UnfoldTabularInline, nested_admin.NestedTabularInline): pass ``` However,...

> Indeed, inlines don't properly initialize the editor instances. This should be feasible to fix using [inline form events](https://docs.djangoproject.com/en/3.2/ref/contrib/admin/javascript/#inline-form-events). I'm not sure this will work for removal, that's something to...