Open osimuka opened 2 years ago
model = InlineModel description = "Inline Description" fields = ["name"] extra = 0 class ParentInlineModeInlineAdmin(nested_admin.NestedTabularInline): model = ParentInlineModel description = "Parent Description" extra = 0 max_num = 3 inlines = (InlineModeInlineAdmin,)
With this type of setup, the child inline description does not show, instead the parent description overrides
With this type of setup, the child inline description does not show, instead the parent description overrides